/* 
* Nteraop - CSS Styles
* Luxury Gold Foil Effect Design
* Multi-Column Magazine Layout
* Version: 1.0.0
* Last updated: 10.01.2026
*/

/* ====================================
   Table of Contents:
   --------------------------------------
   1. Base Styles & Typography
   2. Layout & Containers
   3. Header & Navigation
   4. Hero Section
   5. Statistics Section
   6. Programs Section
   7. Methodology Section
   8. Testimonials Section
   9. CTA Section
   10. Footer
   11. About Page
   12. Schedule Page
   13. Solutions Page
   14. Contact Page
   15. Policy Pages
   16. Thanks Page
   17. Cookie Consent
   18. Animations & Effects
   19. Utilities
   20. Media Queries
   ==================================== */

/* ====================================
   1. Base Styles & Typography
   ==================================== */
:root {
    --dark-blue: #0A1128;
    --darker-blue: #060B18;
    --gold: #D4AF37;
    --light-gold: #F9E076;
    --accent-gold: #E8C95E;
    --white: #F9F9F9;
    --gray: #B8B8B8;
    --black: #000000;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --gold-gradient: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 50%, var(--gold) 100%);
    --gold-gradient-hover: linear-gradient(135deg, var(--light-gold) 0%, var(--gold) 50%, var(--light-gold) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; 
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--darker-blue);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--white);
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.6rem;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover, a:focus {
    color: var(--light-gold);
    text-decoration: none;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
}

/* ====================================
   2. Layout & Containers
   ==================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

.gold-title {
    color: transparent;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gold-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 8rem;
    height: 0.3rem;
    background: var(--gold-gradient);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.3rem;
    background: var(--gold-gradient);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.8rem;
    margin-bottom: 5rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

.page-header {
    background-color: var(--dark-blue);
    padding: 6rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.page-title {
    margin-bottom: 1rem;
    color: transparent;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.page-subtitle {
    font-size: 1.8rem;
    color: var(--gray);
    max-width: 70rem;
    margin: 0 auto;
}

/* ====================================
   3. Header & Navigation
   ==================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(6, 11, 24, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo img {
    height: 5rem;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-list li {
    margin: 0 1.5rem;
}

.nav-list a {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    padding: 0.8rem 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-list a:hover::after, .nav-list a:focus::after, .nav-list a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2.1rem;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 0.3rem;
    background: var(--gold-gradient);
    border-radius: 0.3rem;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 8rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 8rem);
    background-color: rgba(6, 11, 24, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-container {
    padding: 3rem 2rem;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list li {
    margin-bottom: 2rem;
}

.mobile-nav-list a {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 500;
    display: block;
    padding: 1rem 0;
    position: relative;
}

.mobile-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.mobile-nav-list a:hover::after, .mobile-nav-list a:focus::after, .mobile-nav-list a.active::after {
    width: 100%;
}

.mobile-contact {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phone-link {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.phone-link::before {
    content: '\f095';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 1rem;
    color: var(--gold);
}

.btn-gold-mobile {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black);
    font-weight: 700;
    padding: 1.2rem 2.4rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-gold-mobile:hover, .btn-gold-mobile:focus {
    background: var(--gold-gradient-hover);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ====================================
   4. Hero Section
   ==================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 70rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 8rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(6, 11, 24, 0.9) 0%, rgba(6, 11, 24, 0.7) 50%, rgba(6, 11, 24, 0.8) 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 60rem;
}

.hero-title {
    font-size: 6rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    max-width: 50rem;
}

.hero-cta {
    display: flex;
    gap: 2rem;
}

.btn-gold-hero {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black);
    font-weight: 700;
    padding: 1.5rem 3rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-gold-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    transition: 0.5s;
}

.btn-gold-hero:hover::before, .btn-gold-hero:focus::before {
    left: 100%;
}

.btn-gold-hero:hover, .btn-gold-hero:focus {
    background: var(--gold-gradient-hover);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-hero {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    padding: 1.4rem 3rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: 2px solid var(--gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-outline-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.2);
    transform: skewX(-30deg);
    transition: 0.5s;
    z-index: -1;
}

.btn-outline-hero:hover::before, .btn-outline-hero:focus::before {
    left: 100%;
}

.btn-outline-hero:hover, .btn-outline-hero:focus {
    color: var(--gold);
    border-color: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ====================================
   5. Statistics Section
   ==================================== */
.statistics-section {
    padding: 6rem 0;
    background-color: var(--dark-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 3rem;
    border-radius: 0.5rem;
    background-color: rgba(10, 17, 40, 0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(249, 224, 118, 0.05) 100%);
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 4.8rem;
    font-weight: 700;
    color: transparent;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.stat-label {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 500;
}

/* ====================================
   6. Programs Section
   ==================================== */
.programs-section {
    padding: 10rem 0;
    background-color: var(--darker-blue);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 4rem;
    margin-top: 6rem;
}

.program-card {
    background-color: rgba(10, 17, 40, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.program-image {
    height: 25rem;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.program-description {
    margin-bottom: 2rem;
    color: var(--gray);
}

.program-features {
    list-style: none;
    margin-bottom: 3rem;
}

.program-features li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.program-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.btn-program {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black);
    font-weight: 700;
    padding: 1.2rem 2.4rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    align-self: flex-start;
    margin-top: auto;
}

.btn-program:hover, .btn-program:focus {
    background: var(--gold-gradient-hover);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ====================================
   7. Methodology Section
   ==================================== */
.methodology-section {
    padding: 10rem 0;
    background-color: var(--dark-blue);
    position: relative;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.methodology-text {
    position: relative;
}

.section-description {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    color: var(--gray);
}

.methodology-elements {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.methodology-element {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.element-number {
    font-size: 3.6rem;
    font-weight: 700;
    color: transparent;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    line-height: 1;
}

.element-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.element-content p {
    color: var(--gray);
}

.methodology-image {
    position: relative;
    height: 100%;
    min-height: 50rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.methodology-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.methodology-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(6, 11, 24, 0.1) 100%);
}

/* ====================================
   8. Testimonials Section
   ==================================== */
.testimonials-section {
    padding: 10rem 0;
    background-color: var(--darker-blue);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 4rem;
    margin-top: 6rem;
}

.testimonial-card {
    background-color: rgba(10, 17, 40, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--gold);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    padding: 3rem;
}

.testimonial-quote {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 3rem;
}

.testimonial-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 2.4rem;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.3;
}

.testimonial-quote p {
    font-style: italic;
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.author-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 1.4rem;
    color: var(--gray);
    margin: 0;
}

.testimonial-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(10, 17, 40, 0.5);
    border-radius: 0.5rem;
}

.metric-value {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: transparent;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.4rem;
    color: var(--gray);
}

/* ====================================
   9. CTA Section
   ==================================== */
.cta-section {
    padding: 10rem 0;
    background-color: var(--dark-blue);
    position: relative;
}

.cta-content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.cta-subtitle {
    font-size: 1.8rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 60rem;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    background-color: rgba(10, 17, 40, 0.5);
    color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    min-height: 15rem;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: var(--gray);
}

.btn-gold-form {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black);
    font-weight: 700;
    padding: 1.5rem 3rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 2rem;
}

.btn-gold-form:hover, .btn-gold-form:focus {
    background: var(--gold-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ====================================
   10. Footer
   ==================================== */
.site-footer {
    background-color: var(--darker-blue);
    padding: 8rem 0 2rem;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.footer-logo {
    flex: 0 0 100%;
    max-width: 25rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 5rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1.6rem;
    color: var(--gray);
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 0 0 calc(25% - 2rem);
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 4rem;
    height: 0.2rem;
    background: var(--gold-gradient);
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 1.2rem;
}

.footer-column ul li a {
    color: var(--gray);
    font-size: 1.6rem;
    transition: var(--transition);
}

.footer-column ul li a:hover, .footer-column ul li a:focus {
    color: var(--gold);
    padding-left: 0.5rem;
}

.footer-column address {
    font-style: normal;
    color: var(--gray);
}

.footer-column address p {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
}

.footer-column address p i {
    color: var(--gold);
    margin-right: 1rem;
    margin-top: 0.4rem;
}

.footer-column address p a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-column address p a:hover, .footer-column address p a:focus {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.footer-policy-links {
    display: flex;
    gap: 2rem;
}

.footer-policy-links a {
    font-size: 1.4rem;
    color: var(--gray);
    transition: var(--transition);
}

.footer-policy-links a:hover, .footer-policy-links a:focus {
    color: var(--gold);
}

/* ====================================
   11. About Page
   ==================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 50rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(6, 11, 24, 0.1) 100%);
}

.about-text {
    position: relative;
}

.history-year {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.mission-statement {
    padding: 3rem;
    background-color: rgba(10, 17, 40, 0.5);
    border-radius: 0.5rem;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(249, 224, 118, 0.05) 100%);
    z-index: -1;
}

.mission-statement h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: transparent;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.mission-statement p {
    font-size: 1.8rem;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.value-card {
    padding: 3rem;
    background-color: rgba(10, 17, 40, 0.5);
    border-radius: 0.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(249, 224, 118, 0.05) 100%);
    z-index: -1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.value-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.value-card p {
    color: var(--gray);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.approach-text {
    position: relative;
}

.approach-description {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    color: var(--gray);
}

.approach-principles {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.principle {
    position: relative;
}

.principle h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.principle h3 span {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-right: 1.5rem;
}

.principle p {
    color: var(--gray);
    padding-left: 5rem;
}

.approach-image {
    position: relative;
    height: 100%;
    min-height: 50rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(6, 11, 24, 0.1) 100%);
}

.methodology-detailed {
    padding: 10rem 0;
    background-color: var(--dark-blue);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 4rem;
    margin-top: 6rem;
}

.methodology-card {
    padding: 3rem;
    background-color: rgba(10, 17, 40, 0.5);
    border-radius: 0.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.methodology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(249, 224, 118, 0.05) 100%);
    z-index: -1;
}

.methodology-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.methodology-card h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: transparent;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.methodology-description {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 3rem;
}

.methodology-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.methodology-features li {
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    color: var(--gray);
}

.methodology-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.methodology-features li strong {
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
}

.btn-gold-large {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black);
    font-weight: 700;
    padding: 1.5rem 4rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-gold-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    transition: 0.5s;
}

.btn-gold-large:hover::before, .btn-gold-large:focus::before {
    left: 100%;
}

.btn-gold-large:hover, .btn-gold-large:focus {
    background: var(--gold-gradient-hover);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-large {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    padding: 1.4rem 4rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: 2px solid var(--gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-outline-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.2);
    transform: skewX(-30deg);
    transition: 0.5s;
    z-index: -1;
}

.btn-outline-large:hover::before, .btn-outline-large:focus::before {
    left: 100%;
}

.btn-outline-large:hover, .btn-outline-large:focus {
    color: var(--gold);
    border-color: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ====================================
   12. Schedule Page
   ==================================== */
.schedule-filter {
    padding: 3rem 0;
    background-color: var(--darker-blue);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-button {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-button:hover, .filter-button:focus, .filter-button.active {
    background: var(--gold-gradient);
    color: var(--black);
    border-color: transparent;
}

.filter-search {
    position: relative;
}

.filter-search input {
    padding: 1rem 4rem 1rem 1.5rem;
    width: 30rem;
    background-color: rgba(10, 17, 40, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    border-radius: 0.5rem;
    font-size: 1.4rem;
    transition: var(--transition);
}

.filter-search input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.filter-search i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.6rem;
}

.programs-schedule {
    padding: 8rem 0;
    background-color: var(--darker-blue);
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.schedule-card {
    display: flex;
    background-color: rgba(10, 17, 40, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(249, 224, 118, 0.05) 100%);
    z-index: -1;
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.schedule-date {
    flex: 0 0 15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 3rem;
    font-weight: 700;
}

.date-day {
    font-size: 4.8rem;
    line-height: 1;
}

.date-month {
    font-size: 1.8rem;
    margin-top: 0.5rem;
}

.date-year {
    font-size: 1.6rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.schedule-content {
    flex: 1;
    padding: 3rem;
}

.schedule-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.schedule-description {
    margin-bottom: 2.5rem;
    color: var(--gray);
}

.schedule-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail i {
    color: var(--gold);
    font-size: 1.8rem;
}

.btn-schedule {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black);
    font-weight: 700;
    padding: 1.2rem 2.4rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-schedule:hover, .btn-schedule:focus {
    background: var(--gold-gradient-hover);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.registration-section {
    padding: 10rem 0;
    background-color: var(--dark-blue);
}

.registration-form {
    max-width: 80rem;
    margin: 0 auto;
}

.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* ====================================
   13. Solutions Page
   ==================================== */
.solutions-filter {
    padding: 3rem 0;
    background-color: var(--darker-blue);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.case-studies-section {
    padding: 8rem 0;
    background-color: var(--darker-blue);
}

.case-studies-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    background-color: rgba(10, 17, 40, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
}

.case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(249, 224, 118, 0.05) 100%);
    z-index: -1;
}

.case-study:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-study-image {
    height: 100%;
    min-height: 50rem;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    padding: 4rem;
}

.case-study-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.case-study-industry {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.case-study-challenge, .case-study-solution, .case-study-result {
    margin-bottom: 3rem;
}

.case-study-challenge h3, .case-study-solution h3, .case-study-result h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: transparent;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.case-study-challenge p, .case-study-solution p, .case-study-result p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.case-study-challenge ul, .case-study-solution ul, .case-study-result ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.case-study-challenge ul li, .case-study-solution ul li, .case-study-result ul li {
    margin-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
    color: var(--gray);
}

.case-study-challenge ul li::before, .case-study-solution ul li::before {
    content: '\f0ca';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.case-study-result ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.case-study-quote {
    padding: 3rem;
    background-color: rgba(10, 17, 40, 0.7);
    border-radius: 0.5rem;
    position: relative;
    margin-top: 4rem;
    border-left: 3px solid var(--gold);
}

.case-study-quote blockquote {
    font-style: italic;
    color: var(--white);
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.case-study-quote blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.3;
}

.quote-author {
    font-size: 1.4rem;
    color: var(--gold);
    text-align: right;
    margin: 0;
}

.methodology-section {
    padding: 10rem 0;
    background-color: var(--dark-blue);
}

.methodology-steps {
    max-width: 80rem;
    margin: 6rem auto 0;
}

.methodology-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
}

.methodology-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    height: calc(100% + 5rem);
    width: 0.2rem;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.step-number {
    flex: 0 0 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gold-gradient);
    color: var(--black);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.step-content p {
    color: var(--gray);
}

/* ====================================
   14. Contact Page
   ==================================== */
.contact-info-section {
    padding: 8rem 0;
    background-color: var(--darker-blue);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.contact-item {
    display: flex;
    gap: 2rem;
}

.contact-icon {
    flex: 0 0 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gold-gradient);
    color: var(--black);
    font-size: 2rem;
    border-radius: 50%;
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-text p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.contact-subtext {
    font-size: 1.4rem;
    opacity: 0.7;
}

.contact-form-container {
    padding: 4rem;
    background-color: rgba(10, 17, 40, 0.5);
    border-radius: 0.5rem;
    position: relative;
    box-shadow: var(--shadow);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(249, 224, 118, 0.05) 100%);
    z-index: -1;
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 3rem;
}

.map-section {
    padding: 8rem 0;
    background-color: var(--dark-blue);
}

.map-container {
    height: 45rem;
    margin-bottom: 4rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-instructions {
    max-width: 80rem;
    margin: 0 auto;
}

.map-instructions h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
}

.iti {
  width: 100%;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.instruction-item {
    display: flex;
    gap: 2rem;
}

.instruction-icon {
    flex: 0 0 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gold-gradient);
    color: var(--black);
    font-size: 2rem;
    border-radius: 50%;
}

.instruction-text {
    flex: 1;
}

.instruction-text h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.instruction-text p {
    color: var(--gray);
}

/* ====================================
   15. Policy Pages
   ==================================== */
.policy-content {
    padding: 6rem 0;
    background-color: var(--darker-blue);
}

.policy-document {
    max-width: 80rem;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 5rem;
}

.policy-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: transparent;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.policy-section h3 {
    font-size: 2.2rem;
    margin: 3rem 0 2rem;
}

.policy-section p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.7;
}

.policy-section ul, .policy-section ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.policy-section ul li, .policy-section ol li {
    color: var(--gray);
    margin-bottom: 1rem;
}

.policy-section a {
    color: var(--gold);
    text-decoration: underline;
    transition: var(--transition);
}

.policy-section a:hover, .policy-section a:focus {
    color: var(--light-gold);
}

.policy-section strong {
    color: var(--white);
}

.cookie-table {
    width: 100%;
    margin: 2rem 0 3rem;
    border-collapse: collapse;
}

.cookie-table th, .cookie-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cookie-table th {
    background-color: rgba(10, 17, 40, 0.7);
    color: var(--white);
    font-weight: 700;
}

.cookie-table td {
    color: var(--gray);
}

.cookie-table tr:nth-child(even) {
    background-color: rgba(10, 17, 40, 0.5);
}

/* ====================================
   16. Thanks Page
   ==================================== */
.thanks-section {
    padding: 10rem 0;
    background-color: var(--darker-blue);
    text-align: center;
}

.thanks-content {
    max-width: 80rem;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 8rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.thanks-title {
    font-size: 4.2rem;
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.8rem;
    color: var(--gray);
    margin-bottom: 5rem;
}

.thanks-details {
    background-color: rgba(10, 17, 40, 0.5);
    border-radius: 0.5rem;
    padding: 4rem;
    margin-bottom: 5rem;
    position: relative;
    box-shadow: var(--shadow);
    text-align: left;
}

.thanks-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(249, 224, 118, 0.05) 100%);
    z-index: -1;
}

.thanks-details h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.steps-list li {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.thanks-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
}

.additional-info {
    padding: 8rem 0;
    background-color: var(--dark-blue);
}

.additional-content {
    max-width: 100rem;
    margin: 0 auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.resource-card {
    padding: 3rem;
    background-color: rgba(10, 17, 40, 0.5);
    border-radius: 0.5rem;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
    text-align: center;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(249, 224, 118, 0.05) 100%);
    z-index: -1;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.resource-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.resource-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.resource-card p {
    color: var(--gray);
    margin-bottom: 3rem;
}

.btn-resource {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black);
    font-weight: 700;
    padding: 1.2rem 2.4rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-resource:hover, .btn-resource:focus {
    background: var(--gold-gradient-hover);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ====================================
   17. Cookie Consent
   ==================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    padding: 2rem;
    display: none;
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cookie-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cookie-content p {
    font-size: 1.6rem;
    color: var(--gray);
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black);
    font-weight: 700;
    padding: 1.2rem 2.4rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-gold:hover, .btn-gold:focus {
    background: var(--gold-gradient-hover);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    padding: 1.1rem 2.4rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: 2px solid var(--gold);
    cursor: pointer;
}

.btn-outline:hover, .btn-outline:focus {
    color: var(--gold);
    border-color: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-text {
    display: inline-block;
    background: transparent;
    color: var(--gray);
    font-weight: 500;
    padding: 1.2rem 2.4rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.btn-text:hover, .btn-text:focus {
    color: var(--white);
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: var(--darker-blue);
    max-width: 60rem;
    width: 90%;
    border-radius: 0.5rem;
    padding: 4rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cookie-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.4rem;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-close:hover {
    color: var(--white);
}

.cookie-modal-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.cookie-modal-content p {
    color: var(--gray);
    margin-bottom: 3rem;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cookie-option {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-option > div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-option input[type="checkbox"] {
    width: 2rem;
    height: 2rem;
    accent-color: var(--gold);
}

.cookie-option label {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
}

.cookie-option p {
    margin-left: 3rem;
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: 0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

/* ====================================
   18. Animations & Effects
   ==================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 1s ease forwards;
}

.slide-left {
    animation: slideInLeft 1s ease forwards;
}

.slide-right {
    animation: slideInRight 1s ease forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* ====================================
   19. Utilities
   ==================================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.gap-3 {
    gap: 3rem;
}

/* ====================================
   20. Media Queries
   ==================================== */
@media screen and (max-width: 1200px) {
    html {
        font-size: 58%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methodology-content, .about-content, .approach-content, .case-study {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image, .approach-image, .methodology-image {
        min-height: 40rem;
    }
    
    .case-study-image {
        min-height: 30rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-title {
        font-size: 4.8rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .programs-grid, .testimonials-grid, .methodology-grid, .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .form-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .schedule-card {
        flex-direction: column;
    }
    
    .schedule-date {
        flex: 0 0 auto;
        padding: 2rem;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .date-month, .date-year {
        margin-top: 0;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    .hero-section {
        height: auto;
        padding: 10rem 0;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .btn-gold-hero, .btn-outline-hero {
        width: 100%;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons, .thanks-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .btn-gold-large, .btn-outline-large {
        width: 100%;
        text-align: center;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 50%;
    }
    
    section {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .methodology-step {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .methodology-step:not(:last-child)::after {
        display: none;
    }
    
    .step-content p {
        padding-left: 0;
    }
    
    .contact-item, .instruction-item {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .contact-form-container {
        padding: 3rem 2rem;
    }
    
    .cookie-modal-content {
        padding: 3rem 2rem;
    }
    
    .steps-list li {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 375px) {
    html {
        font-size: 48%;
    }
    
    .header-container {
        height: 7rem;
    }
    
    .logo img {
        height: 4rem;
    }
    
    .mobile-menu {
        top: 7rem;
        height: calc(100vh - 7rem);
    }
}