/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --crimson-surge: #e63946;
    --pearl-whisper: #fdeaeb;
    --burgundy-depth: #c8252f;
    --ocean-azure: #2a9d8f;
    --mint-breeze: #e8f5f3;
    --amber-glow: #f4a261;
    --honey-light: #fef2e6;
    --violet-dream: #7209b7;
    --lavender-mist: #f4eeff;
    --charcoal-gray: #2f3e46;
    --silver-cloud: #f8f9fa;
    --forest-green: #264653;
    --sunset-orange: #e76f51;
    --sky-blue: #219ebc;
}

body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.6;
    color: var(--charcoal-gray);
    background-color: #ffffff;
}

.ContentLayout__Container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header and Navigation Styles */
.PrimaryNavigation__Wrapper {
    background-color: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.NavigationCore__Layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.BrandLogo__Image {
    height: 42px;
    width: auto;
}

.MobileNav__Toggle {
    display: none;
}

.HamburgerMenu__Label {
    display: none;
}

.BurgerIcon__Bar {
    width: 28px;
    height: 3px;
    background: var(--charcoal-gray);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.BurgerIcon__Bar:before,
.BurgerIcon__Bar:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--charcoal-gray);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.BurgerIcon__Bar:before {
    top: -9px;
}

.BurgerIcon__Bar:after {
    top: 9px;
}

.NavigationMenu__Wrapper {
    display: flex;
    align-items: center;
    gap: 21px;
}

.NavLinks__List {
    display: flex;
    gap: 34px;
    list-style: none;
}

.NavLink__Element {
    color: var(--charcoal-gray);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.NavLink__Element:hover {
    color: var(--crimson-surge);
}

/* Hero Section */
.HeroSection__Showcase {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--pearl-whisper) 0%, #ffffff 100%);
}

.HeroContent__Grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.MainHeading__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 47px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--burgundy-depth);
    margin-bottom: 21px;
}

.HeroDescription__Text {
    font-size: 19px;
    color: var(--charcoal-gray);
    margin-bottom: 34px;
    line-height: 1.7;
}

.ActionButtons__Group {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.PrimaryAction__Button {
    background: var(--crimson-surge);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--crimson-surge);
}

.PrimaryAction__Button:hover {
    background: var(--burgundy-depth);
    border-color: var(--burgundy-depth);
    transform: translateY(-2px);
}

.SecondaryAction__Button {
    background: transparent;
    color: var(--crimson-surge);
    padding: 16px 32px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--crimson-surge);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.SecondaryAction__Button:hover {
    background: var(--crimson-surge);
    color: #ffffff;
    transform: translateY(-2px);
}

.HeroVisual__Image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.12);
}

/* Services Section */
.ServicesShowcase__Area {
    padding: 96px 0;
    background-color: #ffffff;
}

.SectionHeader__Block {
    text-align: center;
    margin-bottom: 76px;
}

.SectionTitle__Heading {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--burgundy-depth);
    margin-bottom: 16px;
}

.SectionSubtitle__Text {
    font-size: 18px;
    color: var(--charcoal-gray);
    max-width: 640px;
    margin: 0 auto;
}

.ServicesGrid__Layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 43px;
}

.ServiceCard__Item {
    background: #ffffff;
    padding: 43px 29px;
    border-radius: 13px;
    text-align: center;
    box-shadow: 0 8px 29px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ServiceCard__Item:hover {
    transform: translateY(-7px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.ServiceIcon__Container {
    background: var(--pearl-whisper);
    width: 89px;
    height: 89px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.ServiceSymbol__Image {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(2532%) hue-rotate(340deg) brightness(92%) contrast(101%);
}

.ServiceTitle__Name {
    font-family: 'Roboto', sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: var(--burgundy-depth);
    margin-bottom: 16px;
}

.ServiceDescription__Details {
    font-size: 16px;
    color: var(--charcoal-gray);
    line-height: 1.6;
}

/* About Preview Section */
.AboutPreview__Segment {
    padding: 96px 0;
    background: var(--silver-cloud);
}

.AboutContent__Grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.AboutVisual__Picture {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.12);
}

.AboutHeading__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--burgundy-depth);
    margin-bottom: 21px;
}

.AboutParagraph__Content {
    font-size: 17px;
    color: var(--charcoal-gray);
    margin-bottom: 29px;
    line-height: 1.7;
}

.AboutFeatures__List {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.FeaturePoint__Item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.CheckIcon__Symbol {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(1352%) hue-rotate(146deg) brightness(119%) contrast(119%);
}

.FeatureText__Label {
    font-size: 16px;
    color: var(--charcoal-gray);
    font-weight: 500;
}

/* CTA Section */
.CallToAction__Banner {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--crimson-surge) 0%, var(--burgundy-depth) 100%);
    color: #ffffff;
}

.CTAContent__Wrapper {
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.CTAHeading__Message {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 21px;
}

.CTASubtext__Description {
    font-size: 18px;
    margin-bottom: 34px;
    opacity: 0.95;
    line-height: 1.6;
}

.CTAButton__Action {
    background: #ffffff;
    color: var(--crimson-surge);
    padding: 18px 43px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.CTAButton__Action:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 29px rgba(0, 0, 0, 0.25);
}

/* Programs Section */
.ProgramsOffering__Zone {
    padding: 96px 0;
    background: #ffffff;
}

.ProgramsTitle__Header {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--burgundy-depth);
    text-align: center;
    margin-bottom: 68px;
}

.ProgramsGrid__Structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 43px;
}

.ProgramCard__Block {
    background: #ffffff;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 8px 29px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ProgramCard__Block:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.ProgramImage__Frame {
    height: 240px;
    overflow: hidden;
}

.ProgramVisual__Photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ProgramCard__Block:hover .ProgramVisual__Photo {
    transform: scale(1.05);
}

.ProgramContent__Details {
    padding: 29px;
}

.ProgramName__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--burgundy-depth);
    margin-bottom: 13px;
}

.ProgramDesc__Text {
    font-size: 16px;
    color: var(--charcoal-gray);
    margin-bottom: 21px;
    line-height: 1.6;
}

.ProgramMeta__Info {
    display: flex;
    gap: 16px;
}

.ProgramDuration__Label,
.ProgramFormat__Type {
    background: var(--pearl-whisper);
    color: var(--burgundy-depth);
    padding: 8px 16px;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 500;
}

/* Contact Section */
.ContactFormulation__Section {
    padding: 96px 0;
    background: var(--silver-cloud);
}

.ContactWrapper__Layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: start;
}

.ContactHeading__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--burgundy-depth);
    margin-bottom: 21px;
}

.ContactDescription__Text {
    font-size: 17px;
    color: var(--charcoal-gray);
    margin-bottom: 34px;
    line-height: 1.7;
}

.ContactDetails__Group {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.ContactItem__Row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ContactIcon__Symbol {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(2532%) hue-rotate(340deg) brightness(92%) contrast(101%);
}

.ContactText__Info {
    font-size: 16px;
    color: var(--charcoal-gray);
}

.ContactFormulation__Structure {
    background: #ffffff;
    padding: 43px;
    border-radius: 13px;
    box-shadow: 0 8px 29px rgba(0, 0, 0, 0.08);
}

.FormGroup__Container {
    margin-bottom: 24px;
}

.FormLabel__Text {
    display: block;
    font-weight: 600;
    color: var(--charcoal-gray);
    margin-bottom: 8px;
}

.FormInput__Field,
.FormSelect__Field,
.FormTextarea__Field {
    width: 100%;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 9px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.FormInput__Field:focus,
.FormSelect__Field:focus,
.FormTextarea__Field:focus {
    outline: none;
    border-color: var(--crimson-surge);
}

.FormTextarea__Field {
    resize: vertical;
    min-height: 120px;
}

.FormSubmit__Button {
    background: var(--crimson-surge);
    color: #ffffff;
    padding: 18px 43px;
    border: none;
    border-radius: 11px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.FormSubmit__Button:hover {
    background: var(--burgundy-depth);
    transform: translateY(-2px);
}

/* Footer */
.SiteFooter__Foundation {
    background: var(--charcoal-gray);
    color: #ffffff;
    padding: 68px 0 34px;
}

.FooterContent__Grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 55px;
    margin-bottom: 43px;
}

.FooterLogo__Image {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 21px;
}

.FooterDescription__Text {
    font-size: 16px;
    opacity: 0.87;
    line-height: 1.6;
}

.FooterHeading__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 21px;
}

.FooterNav__List {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.FooterLink__Element {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.87;
    transition: opacity 0.3s ease;
}

.FooterLink__Element:hover {
    opacity: 1;
}

.FooterContactInfo__Block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.FooterContactItem__Text {
    font-size: 16px;
    opacity: 0.87;
}

.FooterBottom__Bar {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 29px;
    text-align: center;
}

.CopyrightText__Notice {
    font-size: 14px;
    opacity: 0.7;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .HamburgerMenu__Label {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .NavigationMenu__Wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .NavLinks__List {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 29px;
    }

    .NavItem__Container {
        width: 100%;
        text-align: center;
    }

    .NavLink__Element {
        display: inline-block;
        padding: 13px 21px;
        font-size: 19px;
        color: var(--charcoal-gray);
    }

    .MobileNav__Toggle:checked ~ .NavigationMenu__Wrapper {
        left: 0;
    }

    .MobileNav__Toggle:checked ~ .HamburgerMenu__Label .BurgerIcon__Bar {
        background: transparent;
    }

    .MobileNav__Toggle:checked ~ .HamburgerMenu__Label .BurgerIcon__Bar:before {
        transform: rotate(45deg);
        top: 0;
    }

    .MobileNav__Toggle:checked ~ .HamburgerMenu__Label .BurgerIcon__Bar:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .ContentLayout__Container {
        padding: 0 21px;
    }

    .MainHeading__Title {
        font-size: 38px;
    }

    .SectionTitle__Heading {
        font-size: 32px;
    }

    .ServicesGrid__Layout {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 34px;
    }

    .ProgramsGrid__Structure {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .HeroSection__Showcase {
        padding: 120px 0 68px;
    }

    .HeroContent__Grid {
        grid-template-columns: 1fr;
        gap: 43px;
        text-align: center;
    }

    .MainHeading__Title {
        font-size: 32px;
    }

    .AboutContent__Grid {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .ContactWrapper__Layout {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .FooterContent__Grid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .ActionButtons__Group {
        justify-content: center;
    }

    .ServicesShowcase__Area,
    .AboutPreview__Segment,
    .CallToAction__Banner,
    .ProgramsOffering__Zone,
    .ContactFormulation__Section {
        padding: 68px 0;
    }

    .ContactFormulation__Structure {
        padding: 29px;
    }
}

@media screen and (max-width: 480px) {
    .ContentLayout__Container {
        padding: 0 16px;
    }

    .MainHeading__Title {
        font-size: 27px;
    }

    .HeroDescription__Text {
        font-size: 17px;
    }

    .ActionButtons__Group {
        flex-direction: column;
        align-items: center;
    }

    .PrimaryAction__Button,
    .SecondaryAction__Button {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }

    .ServicesGrid__Layout {
        grid-template-columns: 1fr;
    }

    .ServiceCard__Item {
        padding: 29px 21px;
    }

    .ProgramsGrid__Structure {
        grid-template-columns: 1fr;
    }
}
/* About Page Styles */
.AboutHero__Showcase {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--mint-breeze) 0%, #ffffff 100%);
}

.AboutHeroContent__Grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.AboutMainHeading__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 47px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--burgundy-depth);
    margin-bottom: 21px;
}

.AboutHeroDescription__Text {
    font-size: 19px;
    color: var(--charcoal-gray);
    line-height: 1.7;
}

.AboutHeroVisual__Image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.12);
}

.MissionStatement__Area {
    padding: 96px 0;
    background: #ffffff;
    text-align: center;
}

.MissionContent__Wrapper {
    max-width: 768px;
    margin: 0 auto;
}

.MissionHeading__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--burgundy-depth);
    margin-bottom: 29px;
}

.MissionDescription__Text {
    font-size: 18px;
    color: var(--charcoal-gray);
    line-height: 1.7;
}

/* Team Section */
.TeamShowcase__Zone {
    padding: 96px 0;
    background: var(--silver-cloud);
}

.TeamTitle__Header {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--burgundy-depth);
    text-align: center;
    margin-bottom: 68px;
}

.TeamGrid__Structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 43px;
}

.TeamMember__Card {
    background: #ffffff;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 8px 29px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.TeamMember__Card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.MemberImage__Frame {
    height: 280px;
    overflow: hidden;
}

.MemberPhoto__Image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.TeamMember__Card:hover .MemberPhoto__Image {
    transform: scale(1.05);
}

.MemberInfo__Details {
    padding: 29px;
}

.MemberName__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: var(--burgundy-depth);
    margin-bottom: 8px;
}

.MemberRole__Position {
    font-size: 16px;
    color: var(--crimson-surge);
    font-weight: 500;
    margin-bottom: 16px;
}

.MemberBio__Text {
    font-size: 16px;
    color: var(--charcoal-gray);
    line-height: 1.6;
}

/* Experience Section */
.ExperienceHighlight__Segment {
    padding: 96px 0;
    background: #ffffff;
}

.ExperienceContent__Grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.ExperienceVisual__Picture {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.12);
}

.ExperienceHeading__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--burgundy-depth);
    margin-bottom: 21px;
}

.ExperienceParagraph__Content {
    font-size: 17px;
    color: var(--charcoal-gray);
    margin-bottom: 34px;
    line-height: 1.7;
}

.ExperienceStats__Grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.StatItem__Block {
    text-align: center;
}

.StatNumber__Value {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--crimson-surge);
    margin-bottom: 8px;
}

.StatLabel__Text {
    font-size: 14px;
    color: var(--charcoal-gray);
    font-weight: 500;
}

/* Approach Section */
.ApproachMethodology__Area {
    padding: 96px 0;
    background: var(--silver-cloud);
}

.ApproachTitle__Header {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--burgundy-depth);
    text-align: center;
    margin-bottom: 68px;
}

.ApproachGrid__Layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 43px;
}

.ApproachStep__Item {
    background: #ffffff;
    padding: 43px 29px;
    border-radius: 13px;
    text-align: center;
    box-shadow: 0 8px 29px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ApproachStep__Item:hover {
    transform: translateY(-7px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.StepIcon__Container {
    background: var(--pearl-whisper);
    width: 89px;
    height: 89px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.StepSymbol__Image {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(2532%) hue-rotate(340deg) brightness(92%) contrast(101%);
}

.StepTitle__Name {
    font-family: 'Roboto', sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: var(--burgundy-depth);
    margin-bottom: 16px;
}

.StepDescription__Details {
    font-size: 16px;
    color: var(--charcoal-gray);
    line-height: 1.6;
}

/* Values Section */
.CompanyValues__Zone {
    padding: 96px 0;
    background: #ffffff;
}

.ValuesContent__Wrapper {
    max-width: 968px;
    margin: 0 auto;
    text-align: center;
}

.ValuesHeading__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--burgundy-depth);
    margin-bottom: 21px;
}

.ValuesIntro__Text {
    font-size: 18px;
    color: var(--charcoal-gray);
    margin-bottom: 55px;
    line-height: 1.7;
}

.ValuesList__Grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 34px;
}

.ValueItem__Card {
    background: var(--pearl-whisper);
    padding: 34px 24px;
    border-radius: 13px;
    text-align: center;
}

.ValueName__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--burgundy-depth);
    margin-bottom: 16px;
}

.ValueDesc__Text {
    font-size: 16px;
    color: var(--charcoal-gray);
    line-height: 1.6;
}

/* About CTA Section */
.AboutCTA__Banner {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--ocean-azure) 0%, var(--forest-green) 100%);
    color: #ffffff;
}

.AboutCTAContent__Wrapper {
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.AboutCTAHeading__Message {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 21px;
}

.AboutCTASubtext__Description {
    font-size: 18px;
    margin-bottom: 34px;
    opacity: 0.95;
    line-height: 1.6;
}

.AboutCTAButton__Action {
    background: #ffffff;
    color: var(--ocean-azure);
    padding: 18px 43px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.AboutCTAButton__Action:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 29px rgba(0, 0, 0, 0.25);
}

/* Thank You Page Styles */
.ThankYouHero__Showcase {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--pearl-whisper) 0%, #ffffff 100%);
    text-align: center;
}

.ThankYouContent__Wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.ThankYouIcon__Container {
    background: var(--mint-breeze);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 34px;
}

.ThankYouSymbol__Image {
    width: 55px;
    height: 55px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(1352%) hue-rotate(146deg) brightness(119%) contrast(119%);
}

.ThankYouHeading__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 47px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--burgundy-depth);
    margin-bottom: 21px;
}

.ThankYouDescription__Text {
    font-size: 19px;
    color: var(--charcoal-gray);
    line-height: 1.7;
}

/* Next Steps Section */
.NextStepsInfo__Area {
    padding: 96px 0;
    background: #ffffff;
}

.NextStepsTitle__Header {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--burgundy-depth);
    text-align: center;
    margin-bottom: 68px;
}

.StepsTimeline__Grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 43px;
}

.TimelineStep__Item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.StepNumber__Badge {
    background: var(--crimson-surge);
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    font-weight: 700;
    flex-shrink: 0;
}

.StepContent__Details {
    flex: 1;
}

.StepHeading__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--burgundy-depth);
    margin-bottom: 13px;
}

.StepDesc__Text {
    font-size: 16px;
    color: var(--charcoal-gray);
    margin-bottom: 13px;
    line-height: 1.6;
}

.StepTime__Label {
    background: var(--honey-light);
    color: var(--amber-glow);
    padding: 6px 16px;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 500;
}

/* Additional Info Section */
.AdditionalInfo__Zone {
    padding: 96px 0;
    background: var(--silver-cloud);
}

.InfoContent__Grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.InfoVisual__Picture {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.12);
}

.InfoHeading__Title {
    font-family: 'Roboto', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--burgundy-depth);
    margin-bottom: 21px;
}

.InfoParagraph__Content {
    font-size: 17px;
    color: var(--charcoal-gray);
    margin-bottom: 29px;
    line-height: 1.7;
}

.PreparationList__Items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.PrepItem__Row {
    display: flex;
    align-items: center;
    gap: 13px;
}

.PrepIcon__Symbol {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(2532%) hue-rotate(340deg) brightness(92%) contrast(101%);
}

.PrepText__Label {
    font-size: 16px;
    color: var(--charcoal-gray);
    font-weight: 500;
}

/* Emergency Contact Section */
.EmergencyContact__Banner {
    padding: 68px 0;
    background: var(--honey-light);
    text-align: center;
}

.EmergencyContent__Wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.EmergencyHeading__Message {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--burgundy-depth);
    margin-bottom: 16px;
}

.EmergencySubtext__Description {
    font-size: 16px;
    color: var(--charcoal-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.EmergencyContact__Info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.EmergencyIcon__Symbol {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(2532%) hue-rotate(340deg) brightness(92%) contrast(101%);
}

.EmergencyPhone__Number {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--burgundy-depth);
}

/* Navigation Suggestions Section */
.NavigationSuggestions__Area {
    padding: 96px 0;
    background: #ffffff;
}

.NavSuggestionsTitle__Header {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--burgundy-depth);
    text-align: center;
    margin-bottom: 68px;
}

.NavSuggestionsGrid__Layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 43px;
}

.NavSuggestionCard__Item {
    background: #ffffff;
    padding: 43px 29px;
    border-radius: 13px;
    text-align: center;
    box-shadow: 0 8px 29px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.NavSuggestionCard__Item:hover {
    transform: translateY(-7px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.SuggestionIcon__Container {
    background: var(--pearl-whisper);
    width: 89px;
    height: 89px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.SuggestionSymbol__Image {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(2532%) hue-rotate(340deg) brightness(92%) contrast(101%);
}

.SuggestionTitle__Name {
    font-family: 'Roboto', sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: var(--burgundy-depth);
    margin-bottom: 16px;
}

.SuggestionDesc__Text {
    font-size: 16px;
    color: var(--charcoal-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.SuggestionLink__Button {
    background: var(--crimson-surge);
    color: #ffffff;
    padding: 14px 29px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.SuggestionLink__Button:hover {
    background: var(--burgundy-depth);
    transform: translateY(-2px);
}

/* Responsive Design for About and Thank You Pages */
@media screen and (max-width: 768px) {
    .AboutHeroContent__Grid,
    .ExperienceContent__Grid,
    .InfoContent__Grid {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .AboutMainHeading__Title,
    .ThankYouHeading__Title {
        font-size: 32px;
    }

    .ExperienceStats__Grid {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .TimelineStep__Item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .EmergencyContact__Info {
        flex-direction: column;
    }

    .AboutHero__Showcase,
    .ThankYouHero__Showcase {
        padding: 120px 0 68px;
    }

    .MissionStatement__Area,
    .TeamShowcase__Zone,
    .ExperienceHighlight__Segment,
    .ApproachMethodology__Area,
    .CompanyValues__Zone,
    .AboutCTA__Banner,
    .NextStepsInfo__Area,
    .AdditionalInfo__Zone,
    .NavigationSuggestions__Area {
        padding: 68px 0;
    }
}

@media screen and (max-width: 480px) {
    .AboutMainHeading__Title,
    .ThankYouHeading__Title {
        font-size: 27px;
    }

    .TeamGrid__Structure,
    .ApproachGrid__Layout,
    .NavSuggestionsGrid__Layout {
        grid-template-columns: 1fr;
    }

    .TeamMember__Card,
    .ApproachStep__Item,
    .NavSuggestionCard__Item {
        padding: 29px 21px;
    }

    .ThankYouIcon__Container {
        width: 89px;
        height: 89px;
    }

    .ThankYouSymbol__Image {
        width: 34px;
        height: 34px;
    }
}
