/* Variables globales personalizada */
:root {
    --ocean-depth: #073b4c;
    --morning-mist: #e6ebee;
    --midnight-blue: #052633;
    --forest-whisper: #2a9d8f;
    --sage-light: #b8dbd9;
    --sunset-amber: #e76f51;
    --warm-sand: #f4a261;
    --golden-hour: #e9c46a;
    --pearl-white: #f8f9fa;
    --charcoal-gray: #264653;
    --success-green: #06d6a0;
    --alert-crimson: #ef476f;
    --info-azure: #118ab2;
}

/* Reset y base personalizada */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
    color: var(--midnight-blue);
    background-color: var(--pearl-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Contenedores únicos */
.ContentWrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

.NavigationContainer {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 34px;
}

/* Navegación personalizada */
.PrimaryNavigation {
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(13px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.MainNavbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.BrandIdentity img {
    height: 47px;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.BrandIdentity:hover img {
    transform: scale(1.1) rotate(2deg);
}

.NavigationToggle {
    display: none;
}

.ToggleLabel {
    display: none;
    cursor: pointer;
    padding: 13px;
    z-index: 2;
}

.HamburgerIcon {
    width: 28px;
    height: 3px;
    background: var(--midnight-blue);
    position: relative;
    transition: all 0.3s ease;
}

.HamburgerIcon:before,
.HamburgerIcon:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--midnight-blue);
    transition: all 0.3s ease;
}

.HamburgerIcon:before {
    top: -9px;
}

.HamburgerIcon:after {
    top: 9px;
}

.NavigationWrapper {
    display: flex;
    align-items: center;
}

.NavigationMenu {
    display: flex;
    list-style: none;
    gap: 47px;
    margin: 0;
}

.MenuItem {
    position: relative;
}

.MenuLink {
    color: var(--midnight-blue);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.MenuLink:hover {
    color: var(--forest-whisper);
}

.MenuLink::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-whisper);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.MenuLink:hover::after {
    width: 100%;
}

/* Hero Section única */
.HeroSection {
    padding: 130px 0 89px;
    background: linear-gradient(135deg, var(--morning-mist) 0%, var(--sage-light) 100%);
    position: relative;
    overflow: hidden;
}

.HeroSection::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.1) 0%, transparent 70%);
    transform: rotate(21deg);
}

.HeroContent {
    max-width: 640px;
    z-index: 2;
    position: relative;
}

.MainHeading {
    font-size: 3.2rem;
    color: var(--ocean-depth);
    margin-bottom: 27px;
    line-height: 1.2;
}

.SubtitleText {
    font-size: 1.3rem;
    color: var(--charcoal-gray);
    margin-bottom: 41px;
    opacity: 0.9;
}

.ActionButtons {
    display: flex;
    gap: 23px;
    flex-wrap: wrap;
}

.PrimaryButton, .SecondaryButton {
    padding: 17px 34px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.PrimaryButton {
    background: var(--forest-whisper);
    color: white;
    box-shadow: 0 7px 27px rgba(42, 157, 143, 0.3);
}

.PrimaryButton:hover {
    background: var(--ocean-depth);
    transform: translateY(-2px);
    box-shadow: 0 13px 41px rgba(42, 157, 143, 0.4);
}

.SecondaryButton {
    background: transparent;
    color: var(--ocean-depth);
    border: 2px solid var(--ocean-depth);
}

.SecondaryButton:hover {
    background: var(--ocean-depth);
    color: white;
    transform: translateY(-2px);
}

.HeroVisual {
    display: flex;
    justify-content: center;
    margin-top: 47px;
}

.HeroVisual img {
    max-width: 100%;
    height: auto;
    border-radius: 23px;
    box-shadow: 0 17px 67px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.HeroVisual img:hover {
    transform: scale(1.02) rotate(-1deg);
}

/* Sections gemeinsame */
.ServicesSection, .AboutSection, .ContactSection {
    padding: 89px 0;
}

.SectionHeading {
    font-size: 2.7rem;
    text-align: center;
    color: var(--ocean-depth);
    margin-bottom: 61px;
    position: relative;
}

.SectionHeading::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 67px;
    height: 4px;
    background: var(--forest-whisper);
    border-radius: 2px;
}

/* Services Grid únicas */
.ServicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
    margin-top: 67px;
}

.ServiceCard {
    background: white;
    padding: 41px 27px;
    border-radius: 21px;
    box-shadow: 0 7px 34px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.ServiceCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-whisper), var(--golden-hour));
}

.ServiceCard:hover {
    transform: translateY(-7px);
    box-shadow: 0 17px 67px rgba(0, 0, 0, 0.15);
}

.ServiceTitle {
    font-size: 1.4rem;
    color: var(--ocean-depth);
    margin-bottom: 17px;
}

.ServiceDescription {
    color: var(--charcoal-gray);
    line-height: 1.6;
}

/* About Section */
.AboutContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.AboutDescription {
    margin-bottom: 23px;
    color: var(--charcoal-gray);
    font-size: 1.1rem;
}

.AboutImage img {
    width: 100%;
    border-radius: 17px;
    box-shadow: 0 13px 47px rgba(0, 0, 0, 0.1);
}

/* CTA Section única */
.CTASection {
    background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--forest-whisper) 100%);
    padding: 89px 0;
    text-align: center;
    position: relative;
}

.CTASection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
}

.CTAContent {
    position: relative;
    z-index: 2;
}

.CTAHeading {
    font-size: 2.3rem;
    color: white;
    margin-bottom: 23px;
}

.CTAText {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 41px;
    max-width: 890px;
    margin-left: auto;
    margin-right: auto;
}

.CTAButton {
    background: var(--golden-hour);
    color: var(--midnight-blue);
    padding: 19px 47px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    display: inline-block;
}

.CTAButton:hover {
    background: var(--warm-sand);
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(233, 196, 106, 0.4);
}

/* Contact Section únicas */
.ContactSection {
    background: var(--morning-mist);
}

.ContactContainer {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 67px;
    margin-top: 47px;
}

.FormContainer {
    background: white;
    padding: 47px;
    border-radius: 23px;
    box-shadow: 0 13px 47px rgba(0, 0, 0, 0.1);
}

.FormGroup {
    margin-bottom: 27px;
}

.FormLabel {
    display: block;
    margin-bottom: 9px;
    color: var(--ocean-depth);
    font-weight: 600;
}

.FormInput, .FormSelect, .FormTextarea {
    width: 100%;
    padding: 15px 19px;
    border: 2px solid var(--sage-light);
    border-radius: 13px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.FormInput:focus, .FormSelect:focus, .FormTextarea:focus {
    outline: none;
    border-color: var(--forest-whisper);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.FormTextarea {
    resize: vertical;
    min-height: 120px;
}

.SubmitButton {
    background: var(--forest-whisper);
    color: white;
    padding: 17px 41px;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.SubmitButton:hover {
    background: var(--ocean-depth);
    transform: translateY(-2px);
}

.ContactInfo img {
    width: 100%;
    border-radius: 17px;
    box-shadow: 0 13px 47px rgba(0, 0, 0, 0.1);
}

/* Footer único */
.MainFooter {
    background: var(--midnight-blue);
    color: white;
    padding: 67px 0 27px;
}

.FooterContent {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 47px;
    margin-bottom: 41px;
}

.FooterHeading {
    color: var(--golden-hour);
    margin-bottom: 19px;
    font-size: 1.1rem;
}

.FooterDescription {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 17px;
}

.FooterMenu {
    list-style: none;
}

.FooterMenu li {
    margin-bottom: 11px;
}

.FooterLink {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.FooterLink:hover {
    color: var(--golden-hour);
}

.ContactDetail {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 13px;
    line-height: 1.5;
}

.FooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 27px;
    text-align: center;
}

.CopyrightText {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design - Breakpoints únicos */
@media screen and (max-width: 890px) {
    .ToggleLabel {
        display: block;
    }

    .NavigationWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
        z-index: 1;
    }

    .NavigationMenu {
        flex-direction: column;
        align-items: center;
        gap: 27px;
    }

    .MenuItem {
        width: 100%;
        text-align: center;
    }

    .MenuLink {
        font-size: 19px;
        padding: 17px 27px;
        display: block;
    }

    .NavigationToggle:checked ~ .NavigationWrapper {
        left: 0;
    }

    .NavigationToggle:checked ~ .ToggleLabel .HamburgerIcon {
        background: transparent;
    }

    .NavigationToggle:checked ~ .ToggleLabel .HamburgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .NavigationToggle:checked ~ .ToggleLabel .HamburgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .MainHeading {
        font-size: 2.3rem;
    }

    .AboutContent {
        grid-template-columns: 1fr;
        gap: 41px;
    }

    .ContactContainer {
        grid-template-columns: 1fr;
        gap: 41px;
    }

    .FooterContent {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

@media screen and (max-width: 640px) {
    .ContentWrapper {
        padding: 0 17px;
    }

    .NavigationContainer {
        padding: 0 17px;
    }

    .HeroSection {
        padding: 120px 0 67px;
    }

    .MainHeading {
        font-size: 1.9rem;
    }

    .SubtitleText {
        font-size: 1.1rem;
    }

    .SectionHeading {
        font-size: 2.1rem;
    }

    .ServicesGrid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .ServiceCard {
        padding: 27px 19px;
    }

    .ActionButtons {
        flex-direction: column;
        gap: 17px;
    }

    .PrimaryButton, .SecondaryButton {
        width: 100%;
        text-align: center;
    }

    .FormContainer {
        padding: 27px;
    }

    .FooterContent {
        grid-template-columns: 1fr;
        gap: 27px;
        text-align: center;
    }
}

/* Animaciones únicas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ServiceCard {
    animation: fadeInUp 0.7s ease-out;
}

.ServiceCard:nth-child(2) {
    animation-delay: 0.2s;
}

.ServiceCard:nth-child(3) {
    animation-delay: 0.4s;
}

.ServiceCard:nth-child(4) {
    animation-delay: 0.6s;
}

/* Efectos de hover únicos */
.FormInput:hover, .FormSelect:hover, .FormTextarea:hover {
    border-color: var(--forest-whisper);
}

.ServiceCard:hover .ServiceTitle {
    color: var(--forest-whisper);
    transition: color 0.3s ease;
}

/* Utility classes única */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--morning-mist);
}

::-webkit-scrollbar-thumb {
    background: var(--forest-whisper);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ocean-depth);
}

/* ==============================================
   ESTILOS ADICIONALES PARA ABOUT.HTML Y THANKYOU.PHP
   ============================================== */

/* About Page Styles */
.AboutHero {
    padding: 140px 0 79px;
    background: linear-gradient(127deg, var(--pearl-white) 0%, var(--morning-mist) 100%);
    text-align: center;
}

.AboutMainHeading {
    font-size: 2.9rem;
    color: var(--ocean-depth);
    margin-bottom: 23px;
    max-width: 890px;
    margin-left: auto;
    margin-right: auto;
}

.AboutSubtext {
    font-size: 1.2rem;
    color: var(--charcoal-gray);
    max-width: 740px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Mission Section */
.MissionSection {
    padding: 89px 0;
}

.MissionLayout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 57px;
    align-items: center;
}

.MissionHeading {
    font-size: 2.3rem;
    color: var(--ocean-depth);
    margin-bottom: 29px;
}

.MissionDescription {
    margin-bottom: 21px;
    color: var(--charcoal-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.MissionImage img {
    width: 100%;
    border-radius: 19px;
    box-shadow: 0 11px 43px rgba(0, 0, 0, 0.12);
}

/* Expertise Section */
.ExpertiseSection {
    padding: 79px 0;
    background: var(--morning-mist);
}

.ExpertiseGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 31px;
    margin-top: 61px;
}

.ExpertiseCard {
    background: white;
    padding: 37px 25px;
    border-radius: 17px;
    box-shadow: 0 5px 29px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 4px solid var(--forest-whisper);
}

.ExpertiseCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 51px rgba(0, 0, 0, 0.13);
}

.ExpertiseTitle {
    font-size: 1.3rem;
    color: var(--ocean-depth);
    margin-bottom: 15px;
}

.ExpertiseText {
    color: var(--charcoal-gray);
    line-height: 1.6;
}

/* Approach Section */
.ApproachSection {
    padding: 89px 0;
}

.ApproachLayout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 61px;
    align-items: flex-start;
}

.ApproachHeading {
    font-size: 2.1rem;
    color: var(--ocean-depth);
    margin-bottom: 37px;
}

.ApproachStep {
    margin-bottom: 27px;
    padding-left: 19px;
    border-left: 3px solid var(--sage-light);
    transition: border-color 0.3s ease;
}

.ApproachStep:hover {
    border-left-color: var(--forest-whisper);
}

.StepTitle {
    font-size: 1.1rem;
    color: var(--ocean-depth);
    margin-bottom: 9px;
    font-weight: 600;
}

.StepDescription {
    color: var(--charcoal-gray);
    line-height: 1.6;
}

.ApproachImage img {
    width: 100%;
    border-radius: 19px;
    box-shadow: 0 11px 43px rgba(0, 0, 0, 0.12);
}

/* Values Section */
.ValuesSection {
    padding: 79px 0;
    background: linear-gradient(135deg, var(--forest-whisper) 0%, var(--ocean-depth) 100%);
    color: white;
}

.ValuesSection .SectionHeading {
    color: white;
}

.ValuesSection .SectionHeading::after {
    background: var(--golden-hour);
}

.ValuesContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 29px;
    margin-top: 57px;
}

.ValueItem {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(7px);
    padding: 31px 23px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.ValueItem:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.ValueTitle {
    font-size: 1.2rem;
    margin-bottom: 13px;
    color: var(--golden-hour);
}

.ValueText {
    line-height: 1.6;
    opacity: 0.9;
}

/* Impact Section */
.ImpactSection {
    padding: 89px 0;
}

.ImpactLayout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 57px;
    align-items: center;
}

.ImpactHeading {
    font-size: 2.1rem;
    color: var(--ocean-depth);
    margin-bottom: 25px;
}

.ImpactDescription {
    color: var(--charcoal-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 37px;
}

.ImpactStats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.StatItem {
    text-align: center;
    padding: 19px 11px;
    background: var(--morning-mist);
    border-radius: 13px;
}

.StatNumber {
    display: block;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--forest-whisper);
    margin-bottom: 7px;
}

.StatLabel {
    font-size: 0.9rem;
    color: var(--charcoal-gray);
    line-height: 1.3;
}

.ImpactImage img {
    width: 100%;
    border-radius: 19px;
    box-shadow: 0 11px 43px rgba(0, 0, 0, 0.12);
}

/* ==============================================
   THANK YOU PAGE STYLES
   ============================================== */

.ThankYouSection {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--morning-mist) 0%, var(--sage-light) 100%);
}

.ThankYouContainer {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 61px;
    align-items: center;
}

.ThankYouHeading {
    font-size: 2.7rem;
    color: var(--ocean-depth);
    margin-bottom: 27px;
}

.ThankYouMessage {
    font-size: 1.1rem;
    color: var(--charcoal-gray);
    line-height: 1.7;
    margin-bottom: 43px;
}

.NextSteps {
    margin-bottom: 41px;
}

.NextStepsHeading {
    font-size: 1.8rem;
    color: var(--ocean-depth);
    margin-bottom: 31px;
}

.StepsList {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.StepItem {
    display: flex;
    gap: 19px;
    align-items: flex-start;
}

.StepNumber {
    background: var(--forest-whisper);
    color: white;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.StepContent h3 {
    font-size: 1.1rem;
    color: var(--ocean-depth);
    margin-bottom: 7px;
}

.StepContent p {
    color: var(--charcoal-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.ThankYouActions {
    display: flex;
    gap: 19px;
    flex-wrap: wrap;
}

.ThankYouVisual img {
    width: 100%;
    border-radius: 19px;
    box-shadow: 0 13px 47px rgba(0, 0, 0, 0.1);
}

/* Additional Info Section for Thank You */
.AdditionalInfoSection {
    padding: 79px 0;
    background: var(--pearl-white);
}

.InfoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 29px;
}

.InfoCard {
    background: white;
    padding: 31px 25px;
    border-radius: 15px;
    box-shadow: 0 7px 31px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--golden-hour);
}

.InfoCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 47px rgba(0, 0, 0, 0.12);
}

.InfoTitle {
    font-size: 1.2rem;
    color: var(--ocean-depth);
    margin-bottom: 15px;
}

.InfoText {
    color: var(--charcoal-gray);
    line-height: 1.6;
}

/* ==============================================
   RESPONSIVE STYLES FOR ABOUT & THANK YOU
   ============================================== */

@media screen and (max-width: 890px) {
    .AboutMainHeading {
        font-size: 2.3rem;
    }

    .MissionLayout,
    .ApproachLayout,
    .ImpactLayout,
    .ThankYouContainer {
        grid-template-columns: 1fr;
        gap: 37px;
    }

    .ApproachLayout {
        grid-template-columns: 1fr;
    }

    .ApproachImage {
        order: -1;
    }

    .ImpactStats {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .ThankYouActions {
        flex-direction: column;
    }

    .ThankYouActions .PrimaryButton,
    .ThankYouActions .SecondaryButton {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .AboutHero {
        padding: 120px 0 59px;
    }

    .AboutMainHeading {
        font-size: 1.9rem;
    }

    .AboutSubtext {
        font-size: 1.05rem;
    }

    .MissionHeading,
    .ApproachHeading,
    .ImpactHeading {
        font-size: 1.8rem;
    }

    .ThankYouHeading {
        font-size: 2.1rem;
    }

    .NextStepsHeading {
        font-size: 1.5rem;
    }

    .ExpertiseGrid,
    .ValuesContainer,
    .InfoGrid {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .StepItem {
        flex-direction: column;
        gap: 13px;
        text-align: center;
    }

    .StepNumber {
        align-self: center;
    }
}

.FooterBrand img{
    width: 40%;
}

/* Animation enhancements for new pages */
.ExpertiseCard:nth-child(1) { animation-delay: 0.1s; }
.ExpertiseCard:nth-child(2) { animation-delay: 0.2s; }
.ExpertiseCard:nth-child(3) { animation-delay: 0.3s; }
.ExpertiseCard:nth-child(4) { animation-delay: 0.4s; }

.ValueItem:nth-child(1) { animation-delay: 0.1s; }
.ValueItem:nth-child(2) { animation-delay: 0.2s; }
.ValueItem:nth-child(3) { animation-delay: 0.3s; }
.ValueItem:nth-child(4) { animation-delay: 0.4s; }

.InfoCard:nth-child(1) { animation-delay: 0.1s; }
.InfoCard:nth-child(2) { animation-delay: 0.2s; }
.InfoCard:nth-child(3) { animation-delay: 0.3s; }

.StepItem {
    animation: fadeInUp 0.7s ease-out forwards;
    opacity: 0;
}

.StepItem:nth-child(1) { animation-delay: 0.2s; }
.StepItem:nth-child(2) { animation-delay: 0.4s; }
.StepItem:nth-child(3) { animation-delay: 0.6s; }