/* Custom CSS Variables */
:root {
    --crimson-red: #d62828;
    --soft-blush: #fbe9e9;
    --deep-burgundy: #961c1c;
    --ocean-deep: #2563eb;
    --ocean-light: #dbeafe;
    --forest-green: #16a34a;
    --forest-light: #dcfce7;
    --amber-bright: #f59e0b;
    --amber-soft: #fef3c7;
    --slate-border: #e2e8f0;
    --slate-light: #f8fafc;
    --info-blue: #0ea5e9;
    --warning-orange: #ea580c;
    --success-emerald: #059669;
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    line-height: 1.7;
    color: var(--deep-burgundy);
    background-color: #ffffff;
    overflow-x: hidden;
}

.ContentBoundary {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 23px;
}

/* Navigation Styles */
.TopNavigationZone {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(13px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--slate-border);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.NavigationFrame {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.BrandIdentity img {
    height: 42px;
    width: auto;
    transition: transform 0.3s ease;
}

.BrandIdentity:hover img {
    transform: scale(1.08);
}

.MobileToggleInput {
    display: none;
}

.MobileMenuButton {
    display: none;
}

.BurgerIcon {
    width: 28px;
    height: 3px;
    background: var(--deep-burgundy);
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.BurgerIcon:before,
.BurgerIcon:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--deep-burgundy);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.BurgerIcon:before {
    top: -9px;
}

.BurgerIcon:after {
    top: 9px;
}

.NavigationContainer {
    display: flex;
    align-items: center;
}

.MenuList {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
}

.MenuLink {
    color: var(--deep-burgundy);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 11px 0;
    position: relative;
    transition: all 0.3s ease;
}

.MenuLink:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crimson-red);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.MenuLink:hover:before {
    width: 100%;
}

.MenuLink:hover {
    color: var(--crimson-red);
    transform: translateY(-1px);
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .MobileMenuButton {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .NavigationContainer {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 89px;
        flex-direction: column;
        justify-content: flex-start;
    }

    .MenuList {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .MenuItem {
        width: 100%;
        text-align: center;
        margin: 19px 0;
    }

    .MenuLink {
        display: inline-block;
        padding: 13px 24px;
        font-size: 19px;
    }

    .MobileToggleInput:checked ~ .NavigationContainer {
        left: 0;
    }

    .MobileToggleInput:checked ~ .MobileMenuButton .BurgerIcon {
        background: transparent;
    }

    .MobileToggleInput:checked ~ .MobileMenuButton .BurgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .MobileToggleInput:checked ~ .MobileMenuButton .BurgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.MainHeroArea {
    padding: 134px 0 89px;
    background: linear-gradient(137deg, var(--soft-blush) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.MainHeroArea:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 40, 40, 0.08) 0%, transparent 70%);
    transform: rotate(23deg);
}

.HeroLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.PrimaryHeading {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-burgundy);
    margin-bottom: 29px;
    letter-spacing: -0.02em;
}

.HeroDescription {
    font-size: 1.2rem;
    color: var(--deep-burgundy);
    margin-bottom: 37px;
    opacity: 0.87;
    line-height: 1.6;
}

.ActionButtonGroup {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.PrimaryCTA {
    background: var(--crimson-red);
    color: white;
    padding: 16px 34px;
    border-radius: 43px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 7px 23px rgba(214, 40, 40, 0.25);
}

.PrimaryCTA:hover {
    background: var(--deep-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 11px 29px rgba(214, 40, 40, 0.35);
}

.SecondaryCTA {
    background: transparent;
    color: var(--deep-burgundy);
    padding: 16px 34px;
    border: 2px solid var(--crimson-red);
    border-radius: 43px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.SecondaryCTA:hover {
    background: var(--crimson-red);
    color: white;
    transform: translateY(-1px);
}

.HeroVisual {
    width: 100%;
    height: auto;
    border-radius: 27px;
    box-shadow: 0 23px 67px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.HeroVisual:hover {
    transform: scale(1.03);
}

/* Service Showcase */
.ServiceShowcase {
    padding: 103px 0;
    background: #ffffff;
}

.SectionHeader {
    text-align: center;
    margin-bottom: 71px;
}

.SectionTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--deep-burgundy);
    margin-bottom: 19px;
    font-weight: 600;
}

.SectionSubtext {
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    opacity: 0.73;
    max-width: 540px;
    margin: 0 auto;
}

.ServiceCardGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 41px;
}

.ServiceCard {
    background: #ffffff;
    border-radius: 23px;
    padding: 31px;
    box-shadow: 0 13px 43px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--slate-border);
}

.ServiceCard:hover {
    transform: translateY(-7px);
    box-shadow: 0 19px 59px rgba(0, 0, 0, 0.15);
    border-color: var(--crimson-red);
}

.ServiceImageFrame {
    margin-bottom: 23px;
    border-radius: 17px;
    overflow: hidden;
}

.ServiceImage {
    width: 100%;
    height: 213px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ServiceCard:hover .ServiceImage {
    transform: scale(1.07);
}

.ServiceCardTitle {
    font-size: 1.4rem;
    color: var(--deep-burgundy);
    margin-bottom: 13px;
    font-weight: 600;
}

.ServiceCardText {
    color: var(--deep-burgundy);
    opacity: 0.79;
    line-height: 1.6;
}

/* CTA Section */
.CallToActionArea {
    padding: 89px 0;
    background: linear-gradient(124deg, var(--crimson-red) 0%, var(--deep-burgundy) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.CallToActionArea:before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 60%;
    height: 180%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.11) 0%, transparent 60%);
    transform: rotate(-17deg);
}

.CTALayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 59px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.CTAHeading {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin-bottom: 23px;
    font-weight: 600;
    line-height: 1.3;
}

.CTAMessage {
    font-size: 1.1rem;
    margin-bottom: 31px;
    opacity: 0.91;
    line-height: 1.6;
}

.CTAButton {
    background: white;
    color: var(--crimson-red);
    padding: 17px 37px;
    border-radius: 47px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 9px 31px rgba(0, 0, 0, 0.19);
}

.CTAButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 41px rgba(0, 0, 0, 0.27);
}

.MetricCardCluster {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 23px;
}

.MetricCard {
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(11px);
    border-radius: 19px;
    padding: 29px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.21);
}

.MetricNumber {
    display: block;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.MetricLabel {
    font-size: 0.9rem;
    opacity: 0.83;
}

/* Company Overview */
.CompanyOverview {
    padding: 97px 0;
    background: var(--slate-light);
}

.AboutLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 61px;
    align-items: center;
}

.AboutTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--deep-burgundy);
    margin-bottom: 27px;
    font-weight: 600;
}

.AboutText {
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    margin-bottom: 21px;
    opacity: 0.83;
    line-height: 1.7;
}

.FeatureList {
    list-style: none;
    margin: 31px 0;
}

.FeatureItem {
    position: relative;
    padding-left: 27px;
    margin-bottom: 13px;
    color: var(--deep-burgundy);
}

.FeatureItem:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.AboutCTA {
    background: var(--crimson-red);
    color: white;
    padding: 13px 29px;
    border-radius: 31px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.AboutCTA:hover {
    background: var(--deep-burgundy);
    transform: translateY(-2px);
}

.AboutImage {
    width: 100%;
    height: auto;
    border-radius: 23px;
    box-shadow: 0 17px 53px rgba(0, 0, 0, 0.11);
}

/* Contact Section */
.ContactSection {
    padding: 91px 0;
    background: #ffffff;
}

.ContactLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
}

.ContactTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--deep-burgundy);
    margin-bottom: 23px;
    font-weight: 600;
}

.ContactDescription {
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    margin-bottom: 41px;
    opacity: 0.79;
    line-height: 1.6;
}

.ContactDetails {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.ContactLabel {
    font-size: 1.1rem;
    color: var(--crimson-red);
    margin-bottom: 9px;
    font-weight: 600;
}

.ContactText {
    color: var(--deep-burgundy);
    opacity: 0.83;
}

/* Form Styles */
.ContactForm {
    background: var(--slate-light);
    padding: 37px;
    border-radius: 23px;
    border: 1px solid var(--slate-border);
}

.FormRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px;
    margin-bottom: 23px;
}

.FormRow:last-child {
    grid-template-columns: 1fr;
}

.FormGroup {
    display: flex;
    flex-direction: column;
}

.FormLabel {
    font-size: 0.95rem;
    color: var(--deep-burgundy);
    margin-bottom: 7px;
    font-weight: 500;
}

.FormInput,
.FormSelect,
.FormTextarea {
    padding: 13px 17px;
    border: 1px solid var(--slate-border);
    border-radius: 11px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.FormInput:focus,
.FormSelect:focus,
.FormTextarea:focus {
    outline: none;
    border-color: var(--crimson-red);
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.11);
}

.FormTextarea {
    resize: vertical;
    min-height: 103px;
}

.SubmitButton {
    background: var(--crimson-red);
    color: white;
    padding: 16px 37px;
    border: none;
    border-radius: 43px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
}

.SubmitButton:hover {
    background: var(--deep-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 7px 23px rgba(214, 40, 40, 0.23);
}

/* Footer */
.SiteFooter {
    background: var(--deep-burgundy);
    color: white;
    padding: 67px 0 23px;
}

.FooterLayout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 53px;
    margin-bottom: 41px;
}

.FooterLogo {
    height: 47px;
    margin-bottom: 19px;
    filter: brightness(0) invert(1);
}

.FooterBrandText {
    opacity: 0.79;
    line-height: 1.6;
}

.FooterLinks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 37px;
}

.FooterHeading {
    font-size: 1.2rem;
    margin-bottom: 17px;
    color: white;
    font-weight: 600;
}

.FooterMenu {
    list-style: none;
}

.FooterMenu li {
    margin-bottom: 11px;
}

.FooterLink {
    color: white;
    text-decoration: none;
    opacity: 0.73;
    transition: all 0.3s ease;
}

.FooterLink:hover {
    opacity: 1;
    color: var(--soft-blush);
}

.FooterContact p {
    margin-bottom: 9px;
    opacity: 0.79;
}

.FooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.19);
    padding-top: 23px;
    text-align: center;
}

.Copyright {
    opacity: 0.67;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .ContentBoundary {
        padding: 0 19px;
    }

    .PrimaryHeading {
        font-size: 2.9rem;
    }

    .SectionTitle {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 890px) {
    .HeroLayout,
    .CTALayout,
    .AboutLayout,
    .ContactLayout {
        grid-template-columns: 1fr;
        gap: 41px;
    }

    .MainHeroArea {
        padding: 119px 0 71px;
    }

    .PrimaryHeading {
        font-size: 2.3rem;
    }

    .ActionButtonGroup {
        justify-content: center;
    }

    .ServiceCardGrid {
        grid-template-columns: 1fr;
        gap: 29px;
    }

    .MetricCardCluster {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .FooterLayout {
        grid-template-columns: 1fr;
        gap: 37px;
    }

    .FooterLinks {
        grid-template-columns: 1fr;
        gap: 23px;
    }
}

@media screen and (max-width: 640px) {
    .FormRow {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .PrimaryHeading {
        font-size: 2rem;
    }

    .SectionTitle {
        font-size: 2rem;
    }

    .CTAHeading {
        font-size: 2.1rem;
    }

    .AboutTitle,
    .ContactTitle {
        font-size: 2rem;
    }
}

/* About Page Styles */
.AboutHeroSection {
    padding: 134px 0 89px;
    background: linear-gradient(142deg, var(--ocean-light) 0%, #ffffff 100%);
    position: relative;
}

.AboutHeroLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 59px;
    align-items: center;
}

.AboutHeroTitle {
    font-family: 'Playfair Display', serif;
    font-size: 3.1rem;
    color: var(--deep-burgundy);
    margin-bottom: 27px;
    font-weight: 700;
    line-height: 1.2;
}

.AboutHeroText {
    font-size: 1.2rem;
    color: var(--deep-burgundy);
    opacity: 0.83;
    line-height: 1.7;
}

.AboutHeroImage {
    width: 100%;
    height: auto;
    border-radius: 23px;
    box-shadow: 0 19px 61px rgba(0, 0, 0, 0.13);
}

/* Mission Section */
.MissionSection {
    padding: 91px 0;
    background: #ffffff;
}

.MissionLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.MissionTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--deep-burgundy);
    margin-bottom: 31px;
    font-weight: 600;
}

.MissionDescription {
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    margin-bottom: 23px;
    opacity: 0.79;
    line-height: 1.6;
}

.MissionPoints {
    display: grid;
    gap: 27px;
    margin-top: 37px;
}

.MissionPoint {
    padding: 23px;
    background: var(--slate-light);
    border-radius: 17px;
    border-left: 4px solid var(--crimson-red);
}

.PointTitle {
    font-size: 1.2rem;
    color: var(--deep-burgundy);
    margin-bottom: 11px;
    font-weight: 600;
}

.PointText {
    color: var(--deep-burgundy);
    opacity: 0.73;
    line-height: 1.5;
}

.MissionImage {
    width: 100%;
    height: auto;
    border-radius: 21px;
    box-shadow: 0 17px 47px rgba(0, 0, 0, 0.11);
}

/* Expert Team Section */
.ExpertTeamSection {
    padding: 97px 0;
    background: var(--slate-light);
}

.TeamHeader {
    text-align: center;
    margin-bottom: 67px;
}

.TeamTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    color: var(--deep-burgundy);
    margin-bottom: 19px;
    font-weight: 600;
}

.TeamSubtext {
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    opacity: 0.71;
}

.TeamLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 57px;
    align-items: center;
}

.TeamImage {
    width: 100%;
    height: auto;
    border-radius: 19px;
    box-shadow: 0 15px 43px rgba(0, 0, 0, 0.09);
}

.TeamSectionTitle {
    font-size: 1.8rem;
    color: var(--deep-burgundy);
    margin-bottom: 23px;
    font-weight: 600;
}

.TeamText {
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    margin-bottom: 21px;
    opacity: 0.81;
    line-height: 1.6;
}

.ExpertiseAreas {
    display: grid;
    gap: 17px;
    margin-top: 33px;
}

.ExpertiseItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 21px;
    background: white;
    border-radius: 13px;
    border: 1px solid var(--slate-border);
}

.ExpertiseLabel {
    font-weight: 600;
    color: var(--deep-burgundy);
}

.ExpertiseLevel {
    color: var(--crimson-red);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Methodology Section */
.MethodologySection {
    padding: 93px 0;
    background: #ffffff;
}

.MethodologyHeader {
    text-align: center;
    margin-bottom: 71px;
}

.MethodologyTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--deep-burgundy);
    margin-bottom: 19px;
    font-weight: 600;
}

.MethodologySubtext {
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    opacity: 0.73;
}

.MethodSteps {
    display: grid;
    gap: 31px;
}

.MethodStep {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 29px;
    align-items: flex-start;
    padding: 31px;
    background: var(--slate-light);
    border-radius: 19px;
    transition: all 0.3s ease;
}

.MethodStep:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 37px rgba(0, 0, 0, 0.08);
}

.StepNumber {
    width: 67px;
    height: 67px;
    background: var(--crimson-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.StepTitle {
    font-size: 1.3rem;
    color: var(--deep-burgundy);
    margin-bottom: 13px;
    font-weight: 600;
}

.StepText {
    color: var(--deep-burgundy);
    opacity: 0.79;
    line-height: 1.6;
}

/* Success Stories Section */
.SuccessStoriesSection {
    padding: 89px 0;
    background: linear-gradient(128deg, var(--crimson-red) 0%, var(--deep-burgundy) 100%);
    color: white;
}

.SuccessLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 61px;
    align-items: center;
}

.SuccessTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 27px;
    font-weight: 600;
}

.SuccessText {
    font-size: 1.1rem;
    margin-bottom: 23px;
    opacity: 0.89;
    line-height: 1.7;
}

.SuccessMetrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
    margin: 37px 0;
}

.SuccessMetric {
    text-align: center;
    padding: 23px;
    background: rgba(255, 255, 255, 0.11);
    border-radius: 17px;
    backdrop-filter: blur(9px);
}

.MetricValue {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.MetricDescription {
    font-size: 0.9rem;
    opacity: 0.81;
}

.SuccessImage {
    width: 100%;
    height: auto;
    border-radius: 21px;
    box-shadow: 0 19px 53px rgba(0, 0, 0, 0.23);
}

/* Journey Section */
.JourneySection {
    padding: 91px 0;
    background: var(--slate-light);
}

.JourneyLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 59px;
    align-items: center;
}

.JourneyImage {
    width: 100%;
    height: auto;
    border-radius: 19px;
    box-shadow: 0 17px 43px rgba(0, 0, 0, 0.09);
}

.JourneyTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--deep-burgundy);
    margin-bottom: 23px;
    font-weight: 600;
}

.JourneyDescription {
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    margin-bottom: 33px;
    opacity: 0.79;
    line-height: 1.6;
}

.JourneyPhases {
    display: grid;
    gap: 23px;
}

.JourneyPhase {
    padding: 21px;
    background: white;
    border-radius: 15px;
    border-left: 4px solid var(--ocean-deep);
}

.PhaseTitle {
    font-size: 1.2rem;
    color: var(--deep-burgundy);
    margin-bottom: 9px;
    font-weight: 600;
}

.PhaseText {
    color: var(--deep-burgundy);
    opacity: 0.73;
    line-height: 1.5;
}

/* Thank You Page Styles */
.ThankYouHeroSection {
    padding: 134px 0 97px;
    background: linear-gradient(135deg, var(--forest-light) 0%, #ffffff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.ThankYouContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.ThankYouContent {
    text-align: center;
}

.SuccessIcon {
    margin-bottom: 31px;
}

.CheckmarkCircle {
    width: 97px;
    height: 97px;
    background: var(--forest-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: checkmarkPulse 0.6s ease-out;
}

@keyframes checkmarkPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.CheckmarkIcon {
    color: white;
    font-size: 2.3rem;
    font-weight: bold;
}

.ThankYouTitle {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--deep-burgundy);
    margin-bottom: 13px;
    font-weight: 700;
}

.ThankYouSubtitle {
    font-size: 1.4rem;
    color: var(--forest-green);
    margin-bottom: 27px;
    font-weight: 600;
}

.ThankYouMessage {
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    margin-bottom: 41px;
    opacity: 0.83;
    line-height: 1.7;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.NextStepsSection {
    margin: 47px 0;
    text-align: left;
}

.NextStepsTitle {
    font-size: 1.6rem;
    color: var(--deep-burgundy);
    margin-bottom: 29px;
    font-weight: 600;
    text-align: center;
}

.StepsList {
    display: grid;
    gap: 23px;
}

.StepItem {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 19px;
    align-items: flex-start;
    padding: 23px;
    background: white;
    border-radius: 17px;
    box-shadow: 0 7px 23px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-border);
}

.StepItem .StepNumber {
    width: 43px;
    height: 43px;
    background: var(--forest-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.StepItem .StepTitle {
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    margin-bottom: 7px;
    font-weight: 600;
}

.StepItem .StepDescription {
    color: var(--deep-burgundy);
    opacity: 0.73;
    line-height: 1.5;
    font-size: 0.95rem;
}

.ContactReminder {
    background: var(--amber-soft);
    padding: 23px;
    border-radius: 15px;
    margin: 31px 0;
    border-left: 4px solid var(--amber-bright);
}

.ReminderTitle {
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    margin-bottom: 9px;
    font-weight: 600;
}

.ReminderText {
    color: var(--deep-burgundy);
    margin-bottom: 7px;
    opacity: 0.79;
}

.ReminderPhone {
    font-size: 1.2rem;
    color: var(--amber-bright);
    font-weight: 700;
}

.ActionButtons {
    display: flex;
    gap: 19px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 37px;
}

.ReturnHomeButton {
    background: var(--crimson-red);
    color: white;
    padding: 15px 31px;
    border-radius: 37px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ReturnHomeButton:hover {
    background: var(--deep-burgundy);
    transform: translateY(-2px);
}

.LearnMoreButton {
    background: transparent;
    color: var(--deep-burgundy);
    padding: 15px 31px;
    border: 2px solid var(--slate-border);
    border-radius: 37px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.LearnMoreButton:hover {
    border-color: var(--crimson-red);
    color: var(--crimson-red);
}

.ThankYouImage {
    width: 100%;
    height: auto;
    border-radius: 23px;
    box-shadow: 0 19px 57px rgba(0, 0, 0, 0.11);
}

/* Additional Info Section */
.AdditionalInfoSection {
    padding: 71px 0;
    background: #ffffff;
}

.InfoGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 31px;
}

.InfoCard {
    text-align: center;
    padding: 31px 23px;
    background: var(--slate-light);
    border-radius: 19px;
    transition: all 0.3s ease;
}

.InfoCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 11px 33px rgba(0, 0, 0, 0.07);
}

.InfoCardTitle {
    font-size: 1.2rem;
    color: var(--deep-burgundy);
    margin-bottom: 13px;
    font-weight: 600;
}

.InfoCardText {
    color: var(--deep-burgundy);
    opacity: 0.77;
    line-height: 1.6;
}

/* Responsive Design for About and Thank You Pages */
@media screen and (max-width: 890px) {
    .AboutHeroLayout,
    .MissionLayout,
    .TeamLayout,
    .SuccessLayout,
    .JourneyLayout,
    .ThankYouContainer {
        grid-template-columns: 1fr;
        gap: 41px;
    }

    .AboutHeroTitle,
    .ThankYouTitle {
        font-size: 2.4rem;
    }

    .MissionTitle,
    .TeamTitle,
    .MethodologyTitle,
    .SuccessTitle,
    .JourneyTitle {
        font-size: 2.2rem;
    }

    .SuccessMetrics {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .InfoGrid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .ThankYouContent {
        text-align: center;
    }

    .NextStepsSection {
        text-align: center;
    }

    .StepsList {
        text-align: left;
    }
}

@media screen and (max-width: 640px) {
    .AboutHeroTitle,
    .ThankYouTitle {
        font-size: 2rem;
    }

    .ActionButtons {
        flex-direction: column;
        align-items: center;
    }

    .ReturnHomeButton,
    .LearnMoreButton {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}