/* CSS Variables */
:root {
    --primary-color: #fcbf49;
    --primary-light: #fefaec;
    --primary-dark: #e5a626;
    --secondary-color: #2a9d8f;
    --secondary-light: #e7f4f3;
    --tertiary-color: #e76f51;
    --tertiary-light: #faf2f0;
    --accent-color: #264653;
    --accent-light: #f0f2f1;
    --neutral-color: #6c757d;
    --neutral-light: #f8f9fa;
    --info-color: #17a2b8;
    --warning-color: #dc3545;
    --success-color: #28a745;
    --text-color: #e5a626;
    --background-color: #ffffff;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.7rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 15px;
    color: var(--neutral-color);
    font-size: 1.05rem;
}

/* Container */
.contentWrapping {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Navigation Styles */
.mainHeader {
    background: var(--background-color);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.navBrand .brandLogo {
    height: 42px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before {
    top: -9px;
}

.hamburger:after {
    top: 9px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-color);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 13px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 13px 21px;
        font-size: 1.2rem;
        color: var(--text-color);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.heroDisplay {
    padding: 127px 0 89px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    position: relative;
    overflow: hidden;
}

.heroDisplay::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.heroContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.heroTitle {
    font-size: 3.2rem;
    color: var(--accent-color);
    margin-bottom: 21px;
    line-height: 1.2;
}

.heroSubtext {
    font-size: 1.3rem;
    color: var(--neutral-color);
    margin-bottom: 34px;
    line-height: 1.5;
}

.heroActions {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primaryBtn, .secondaryBtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 17px 34px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.primaryBtn {
    background: var(--primary-color);
    color: var(--accent-color);
}

.primaryBtn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.secondaryBtn {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.secondaryBtn:hover {
    background: var(--accent-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

.btnIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%);
}

.primaryBtn .btnIcon {
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2468%) hue-rotate(155deg) brightness(94%) contrast(90%);
}

.secondaryBtn .btnIcon {
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2468%) hue-rotate(155deg) brightness(94%) contrast(90%);
    transition: filter 0.3s ease;
}

.secondaryBtn:hover .btnIcon {
    filter: brightness(0) invert(1);
}

.heroVisual {
    position: relative;
}

.heroImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: var(--shadow-heavy);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.heroImage:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Services Section */
.servicesDisplay {
    padding: 89px 0;
    background: var(--background-color);
}

.sectionHeader {
    text-align: center;
    margin-bottom: 55px;
}

.sectionHeader h2 {
    color: var(--accent-color);
    margin-bottom: 21px;
}

.sectionHeader p {
    font-size: 1.2rem;
    max-width: 640px;
    margin: 0 auto;
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 34px;
}

.serviceCard {
    background: var(--background-color);
    padding: 34px;
    border-radius: 13px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.serviceCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 191, 73, 0.1), transparent);
    transition: left 0.5s ease;
}

.serviceCard:hover::before {
    left: 100%;
}

.serviceCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.serviceIcon {
    width: 55px;
    height: 55px;
    margin: 0 auto 21px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2468%) hue-rotate(155deg) brightness(94%) contrast(90%);
    transition: filter 0.3s ease;
}

.serviceCard:hover .serviceIcon {
    filter: brightness(0) saturate(100%) invert(77%) sepia(93%) saturate(1274%) hue-rotate(21deg) brightness(103%) contrast(95%);
}

.serviceCard h3 {
    color: var(--accent-color);
    margin-bottom: 13px;
    font-size: 1.4rem;
}

.serviceCard p {
    color: var(--neutral-color);
    line-height: 1.6;
}

/* Programs Section */
.programsDisplay {
    padding: 89px 0;
    background: var(--neutral-light);
    position: relative;
}

.programsContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.programsText h2 {
    color: var(--accent-color);
    margin-bottom: 21px;
}

.programsText p {
    margin-bottom: 34px;
    font-size: 1.1rem;
}

.programFeatures {
    margin-bottom: 34px;
}

.featureItem {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
}

.featureIcon {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.featureItem span {
    color: var(--neutral-color);
    font-weight: 500;
}

.programImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: var(--shadow-medium);
}

/* CTA Section */
.ctaDisplay {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--background-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ctaDisplay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(252, 191, 73, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.ctaContent {
    position: relative;
    z-index: 1;
}

.ctaContent h2 {
    color: var(--background-color);
    font-size: 2.5rem;
    margin-bottom: 21px;
}

.ctaContent p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 34px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ctaActions {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

.ctaBtn, .ctaSecondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 17px 34px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ctaBtn {
    background: var(--primary-color);
    color: var(--accent-color);
    box-shadow: var(--shadow-medium);
}

.ctaBtn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.ctaSecondary {
    background: transparent;
    color: var(--background-color);
    border: 2px solid var(--background-color);
}

.ctaSecondary:hover {
    background: var(--background-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.ctaBtn .btnIcon,
.ctaSecondary .btnIcon {
    width: 18px;
    height: 18px;
}

.ctaBtn .btnIcon {
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2468%) hue-rotate(155deg) brightness(94%) contrast(90%);
}

.ctaSecondary .btnIcon {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.ctaSecondary:hover .btnIcon {
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2468%) hue-rotate(155deg) brightness(94%) contrast(90%);
}

/* Contact Section */
.contactDisplay {
    padding: 89px 0;
    background: var(--primary-light);
}

.contactContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: start;
}

.contactInfo h2 {
    color: var(--accent-color);
    margin-bottom: 21px;
}

.contactInfo p {
    margin-bottom: 34px;
    font-size: 1.1rem;
}

.contactDetails {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.contactItem {
    display: flex;
    align-items: center;
    gap: 13px;
}

.contactIcon {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2468%) hue-rotate(155deg) brightness(94%) contrast(90%);
    flex-shrink: 0;
}

.contactItem h4 {
    color: var(--accent-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contactItem p {
    color: var(--neutral-color);
    margin: 0;
}

/* Form Styles */
.formContainer {
    background: var(--background-color);
    padding: 34px;
    border-radius: 13px;
    box-shadow: var(--shadow-medium);
}

.formGroup {
    margin-bottom: 21px;
}

.formGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--accent-color);
}

.formGroup input,
.formGroup select,
.formGroup textarea {
    width: 100%;
    padding: 13px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(252, 191, 73, 0.1);
}

.formGroup textarea {
    resize: vertical;
    min-height: 127px;
}

.submitBtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 17px 34px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: var(--shadow-light);
    width: 100%;
    justify-content: center;
}

.submitBtn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.submitBtn .btnIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2468%) hue-rotate(155deg) brightness(94%) contrast(90%);
}

/* Footer */
.footerDisplay {
    background: var(--accent-color);
    color: var(--background-color);
    padding: 55px 0 21px;
}

.footerContent {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 55px;
    margin-bottom: 34px;
}

.footerLogo {
    height: 42px;
    width: auto;
    margin-bottom: 21px;
    filter: brightness(0) invert(1);
}

.footerBrand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.linkGroup h4 {
    color: var(--background-color);
    margin-bottom: 13px;
    font-size: 1.2rem;
}

.linkGroup ul {
    list-style: none;
}

.linkGroup li {
    margin-bottom: 8px;
}

.linkGroup a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.linkGroup a:hover {
    color: var(--primary-color);
}

.footerContact h4 {
    color: var(--background-color);
    margin-bottom: 13px;
}

.footerContactItem {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footerIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.footerContactItem span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 21px;
    text-align: center;
}

.footerBottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .contentWrapping {
        max-width: 1140px;
    }

    .heroTitle {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 890px) {
    .heroContent,
    .programsContent,
    .contactContent {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .heroTitle {
        font-size: 2.3rem;
        text-align: center;
    }

    .heroSubtext {
        text-align: center;
    }

    .heroActions {
        justify-content: center;
    }

    .heroVisual {
        order: -1;
    }

    .servicesGrid {
        grid-template-columns: 1fr;
    }

    .footerContent {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .ctaActions {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 640px) {
    .contentWrapping {
        padding: 0 13px;
    }

    .heroDisplay {
        padding: 89px 0 55px;
    }

    .heroTitle {
        font-size: 1.9rem;
    }

    .heroSubtext {
        font-size: 1.1rem;
    }

    .heroActions {
        flex-direction: column;
    }

    .primaryBtn, .secondaryBtn {
        width: 100%;
        justify-content: center;
    }

    .servicesDisplay,
    .programsDisplay,
    .ctaDisplay,
    .contactDisplay {
        padding: 55px 0;
    }

    .serviceCard {
        padding: 21px;
    }

    .formContainer {
        padding: 21px;
    }

    .ctaContent h2 {
        font-size: 2rem;
    }

    .ctaBtn, .ctaSecondary {
        width: 100%;
        justify-content: center;
    }
}

/* About Page Styles */
.aboutHero {
    padding: 127px 0 89px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--primary-light) 100%);
    position: relative;
}

.aboutHeroContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.aboutHeroTitle {
    font-size: 3.2rem;
    color: var(--accent-color);
    margin-bottom: 21px;
    line-height: 1.2;
}

.aboutHeroSubtext {
    font-size: 1.3rem;
    color: var(--neutral-color);
    margin-bottom: 34px;
    line-height: 1.5;
}

.aboutStats {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.statItem {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--background-color);
    padding: 21px;
    border-radius: 13px;
    box-shadow: var(--shadow-light);
    flex: 1;
    min-width: 160px;
}

.statIcon {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(93%) saturate(1274%) hue-rotate(21deg) brightness(103%) contrast(95%);
}

.statContent h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.statContent span {
    color: var(--neutral-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.aboutHeroImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: var(--shadow-heavy);
}

/* Change Management Section */
.changeManagementDisplay {
    padding: 89px 0;
    background: var(--background-color);
}

.changeContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.changeImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: var(--shadow-medium);
}

.changeText h2 {
    color: var(--accent-color);
    margin-bottom: 21px;
}

.changeText p {
    margin-bottom: 34px;
    font-size: 1.1rem;
}

.changeFeatures {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.changeFeature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.changeFeatureIcon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
    margin-top: 3px;
    flex-shrink: 0;
}

.changeFeature h4 {
    color: var(--accent-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.changeFeature p {
    color: var(--neutral-color);
    margin: 0;
}

/* Philosophy Section */
.philosophyDisplay {
    padding: 89px 0;
    background: var(--neutral-light);
}

.philosophyGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.philosophyCard {
    background: var(--background-color);
    padding: 34px;
    border-radius: 13px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.philosophyCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.philosophyIcon {
    width: 55px;
    height: 55px;
    margin: 0 auto 21px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2468%) hue-rotate(155deg) brightness(94%) contrast(90%);
}

.philosophyCard h3 {
    color: var(--accent-color);
    margin-bottom: 13px;
}

.philosophyCard p {
    color: var(--neutral-color);
}

/* Success Section */
.successDisplay {
    padding: 89px 0;
    background: var(--background-color);
}

.successContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.successText h2 {
    color: var(--accent-color);
    margin-bottom: 21px;
}

.successMetrics {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-top: 34px;
}

.metricItem {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 21px;
    background: var(--primary-light);
    border-radius: 8px;
}

.metricIcon {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
    flex-shrink: 0;
}

.metricItem h4 {
    color: var(--accent-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.metricItem p {
    color: var(--neutral-color);
    margin: 0;
    font-size: 0.95rem;
}

.successImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: var(--shadow-medium);
}

/* Organizational Section */
.organizationalDisplay {
    padding: 89px 0;
    background: var(--tertiary-light);
}

.organizationalContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.organizationalImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: var(--shadow-medium);
}

.organizationalText h2 {
    color: var(--accent-color);
    margin-bottom: 21px;
}

.developmentAreas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin: 34px 0;
}

.developmentItem {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px;
    background: var(--background-color);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.developmentIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2468%) hue-rotate(155deg) brightness(94%) contrast(90%);
    flex-shrink: 0;
}

.developmentItem span {
    color: var(--neutral-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Training Section */
.trainingDisplay {
    padding: 89px 0;
    background: var(--background-color);
}

.trainingGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.trainingCard {
    background: var(--background-color);
    padding: 34px;
    border-radius: 13px;
    box-shadow: var(--shadow-light);
    text-align: center;
    border: 1px solid var(--neutral-light);
    transition: all 0.3s ease;
}

.trainingCard:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.trainingIcon {
    width: 55px;
    height: 55px;
    margin: 0 auto 21px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2468%) hue-rotate(155deg) brightness(94%) contrast(90%);
}

.trainingCard h3 {
    color: var(--accent-color);
    margin-bottom: 13px;
}

/* Resources Section */
.resourcesDisplay {
    padding: 89px 0;
    background: var(--accent-light);
}

.resourcesContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.resourcesList {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-top: 34px;
}

.resourceItem {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 21px;
    background: var(--background-color);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.resourceIcon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2468%) hue-rotate(155deg) brightness(94%) contrast(90%);
    margin-top: 3px;
    flex-shrink: 0;
}

.resourceItem h4 {
    color: var(--accent-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.resourceItem p {
    color: var(--neutral-color);
    margin: 0;
    font-size: 0.95rem;
}

.resourceImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: var(--shadow-medium);
}

/* Thank You Page Styles */
.thankYouDisplay {
    padding: 127px 0 89px;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--secondary-color) 100%);
    color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.thankYouDisplay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.2) 0%, transparent 70%);
    animation: rotateBackground 25s linear infinite;
}

.thankYouContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.thankYouVisual {
    position: relative;
    text-align: center;
}

.successIconWrapper {
    position: absolute;
    top: -21px;
    right: -21px;
    width: 89px;
    height: 89px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
    z-index: 2;
}

.successIcon {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

.thankYouImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: var(--shadow-heavy);
}

.thankYouTitle {
    font-size: 3.2rem;
    color: var(--background-color);
    margin-bottom: 21px;
}

.thankYouSubtext {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 34px;
    line-height: 1.5;
}

.nextSteps {
    margin: 34px 0;
}

.nextSteps h3 {
    color: var(--background-color);
    margin-bottom: 21px;
    font-size: 1.5rem;
}

.stepsList {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.stepItem {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 21px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stepIcon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.stepItem h4 {
    color: var(--background-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.stepItem p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.contactReminder {
    margin: 34px 0;
}

.contactReminder h3 {
    color: var(--background-color);
    margin-bottom: 21px;
    font-size: 1.5rem;
}

.emergencyContact {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 21px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.emergencyIcon {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.emergencyContact h4 {
    color: var(--background-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.emergencyContact p {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.emergencyContact span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.thankYouActions {
    display: flex;
    gap: 21px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.thankYouActions .primaryBtn,
.thankYouActions .secondaryBtn {
    background: var(--background-color);
    color: var(--accent-color);
}

.thankYouActions .secondaryBtn {
    background: transparent;
    color: var(--background-color);
    border: 2px solid var(--background-color);
}

.thankYouActions .secondaryBtn:hover {
    background: var(--background-color);
    color: var(--accent-color);
}

/* Why Choose Section */
.whyChooseDisplay {
    padding: 89px 0;
    background: var(--background-color);
}

.benefitsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.benefitCard {
    background: var(--background-color);
    padding: 34px;
    border-radius: 13px;
    box-shadow: var(--shadow-light);
    text-align: center;
    border: 1px solid var(--neutral-light);
    transition: all 0.3s ease;
}

.benefitCard:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.benefitIcon {
    width: 55px;
    height: 55px;
    margin: 0 auto 21px;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.benefitCard h3 {
    color: var(--accent-color);
    margin-bottom: 13px;
}

.benefitCard p {
    color: var(--neutral-color);
}

/* Mobile Responsive for About and Thank You Pages */
@media screen and (max-width: 890px) {
    .aboutHeroContent,
    .changeContent,
    .successContent,
    .organizationalContent,
    .resourcesContent,
    .thankYouContent {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .aboutHeroTitle,
    .thankYouTitle {
        font-size: 2.3rem;
        text-align: center;
    }

    .aboutStats {
        justify-content: center;
    }

    .developmentAreas {
        grid-template-columns: 1fr;
    }

    .thankYouActions {
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
    .aboutHeroTitle,
    .thankYouTitle {
        font-size: 1.9rem;
    }

    .aboutStats {
        flex-direction: column;
    }

    .statItem {
        min-width: auto;
    }

    .stepsList {
        gap: 13px;
    }

    .stepItem,
    .emergencyContact {
        padding: 13px;
    }

    .thankYouActions {
        flex-direction: column;
    }

    .thankYouActions .primaryBtn,
    .thankYouActions .secondaryBtn {
        width: 100%;
        justify-content: center;
    }
}

.policy {
    margin: 5% 15%;
}