/* Основные CSS переменные для настройки цветовой схемы */
:root {
    --coral-wave: #e63946;
    --pearl-mist: #fdeaeb;
    --burgundy-depth: #c8252f;
    --emerald-fresh: #2ecc71;
    --mint-whisper: #d5f4e6;
    --amber-glow: #f39c12;
    --honey-light: #fef9e7;
    --ocean-blue: #3498db;
    --sky-breeze: #ebf7ff;
    --slate-gray: #6c757d;
    --cloud-silver: #f8f9fa;
    --sapphire-info: #17a2b8;
    --sunset-orange: #fd7e14;
    --forest-green: #28a745;
}

/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.7;
    color: var(--burgundy-depth);
    background-color: #ffffff;
    font-size: 16px;
    overflow-x: hidden;
}

/* Контейнер для контента */
.ContentContainerWrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 13px;
    line-height: 1.3;
}

h1 {
    font-size: 3.2rem;
    color: var(--burgundy-depth);
}

h2 {
    font-size: 2.4rem;
    color: var(--burgundy-depth);
}

h3 {
    font-size: 1.8rem;
    color: var(--burgundy-depth);
}

h4 {
    font-size: 1.4rem;
    color: var(--burgundy-depth);
}

/* Параграфы */
p {
    margin-bottom: 21px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Навигация */
.HeaderMain {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.NavigationBarLayout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.BrandIdentitySection {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.LogoBrandElement {
    height: 42px;
    width: auto;
    transition: transform 0.3s ease;
}

.LogoBrandElement:hover {
    transform: scale(1.05);
}

.MobileToggleInput {
    display: none;
}

.MobileMenuLabel {
    display: none;
}

.HamburgerIconElement {
    width: 28px;
    height: 3px;
    background: var(--burgundy-depth);
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.HamburgerIconElement:before,
.HamburgerIconElement:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--burgundy-depth);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.HamburgerIconElement:before {
    top: -9px;
}

.HamburgerIconElement:after {
    top: 9px;
}

.NavigationMenuWrapper {
    display: flex;
    align-items: center;
    gap: 21px;
}

.MenuItemsList {
    display: flex;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.NavigationItemElement {
    list-style: none;
}

.MenuLinkStyle {
    color: var(--burgundy-depth);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.MenuLinkStyle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-wave);
    transition: width 0.3s ease;
}

.MenuLinkStyle:hover::after {
    width: 100%;
}

.MenuLinkStyle:hover {
    color: var(--coral-wave);
}

/* Hero секция */
.HeroBannerArea {
    background: linear-gradient(135deg, var(--pearl-mist) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 140px 0 89px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.HeroContentLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.TextContentSection {
    z-index: 2;
}

.MainHeadingTitle {
    font-size: 3.5rem;
    margin-bottom: 21px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--burgundy-depth) 0%, var(--coral-wave) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.SubtitleDescription {
    font-size: 1.25rem;
    margin-bottom: 34px;
    color: var(--slate-gray);
    line-height: 1.7;
}

.ActionButtonsGroup {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.PrimaryActionButton,
.SecondaryActionButton {
    padding: 15px 29px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    text-align: center;
    border: 2px solid var(--coral-wave);
}

.PrimaryActionButton {
    background: var(--coral-wave);
    color: white;
}

.PrimaryActionButton:hover {
    background: var(--burgundy-depth);
    border-color: var(--burgundy-depth);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.SecondaryActionButton {
    background: transparent;
    color: var(--coral-wave);
}

.SecondaryActionButton:hover {
    background: var(--coral-wave);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
}

.VisualContentSection {
    position: relative;
}

.HeroImageElement {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.HeroImageElement:hover {
    transform: scale(1.02);
}

/* Services секция */
.ServicesOverviewArea {
    padding: 89px 0;
    background: var(--cloud-silver);
}

.SectionHeaderContent {
    text-align: center;
    margin-bottom: 55px;
}

.SectionMainTitle {
    font-size: 2.8rem;
    margin-bottom: 21px;
}

.SectionDescriptionText {
    font-size: 1.2rem;
    color: var(--slate-gray);
    max-width: 640px;
    margin: 0 auto;
}

.ServicesGridLayout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.ServiceCardElement {
    background: white;
    padding: 34px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.ServiceCardElement:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--coral-wave);
}

.ServiceIconContainer {
    width: 68px;
    height: 68px;
    background: var(--pearl-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
    transition: all 0.3s ease;
}

.ServiceCardElement:hover .ServiceIconContainer {
    background: var(--coral-wave);
}

.ServiceIconGraphic {
    width: 32px;
    height: 32px;
    filter: none;
    transition: filter 0.3s ease;
}

.ServiceCardElement:hover .ServiceIconGraphic {
    filter: brightness(0) invert(1);
}

.ServiceTitleHeading {
    font-size: 1.4rem;
    margin-bottom: 13px;
    color: var(--burgundy-depth);
}

.ServiceDescriptionParagraph {
    color: var(--slate-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* About секция */
.AboutCompanyArea {
    padding: 89px 0;
    background: white;
}

.AboutContentLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.AboutImageElement {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.AboutHeadingTitle {
    font-size: 2.5rem;
    margin-bottom: 21px;
}

.AboutDescriptionText {
    font-size: 1.15rem;
    color: var(--slate-gray);
    margin-bottom: 34px;
    line-height: 1.8;
}

.BenefitsListContainer {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.BenefitItemElement {
    display: flex;
    align-items: center;
    gap: 13px;
}

.BenefitIconGraphic {
    width: 24px;
    height: 24px;
    filter: none;
}

.BenefitTextContent {
    font-size: 1.1rem;
    color: var(--burgundy-depth);
    font-weight: 500;
}

/* CTA секция */
.CallToActionArea {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--coral-wave) 0%, var(--burgundy-depth) 100%);
    color: white;
}

.CTAContentLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.CTAHeadingTitle {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: white;
}

.CTADescriptionText {
    font-size: 1.2rem;
    margin-bottom: 34px;
    opacity: 0.95;
    line-height: 1.7;
}

.CTAPrimaryButton {
    background: white;
    color: var(--coral-wave);
    padding: 15px 29px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.CTAPrimaryButton:hover {
    background: var(--pearl-mist);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.CTAImageElement {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Contact секция */
.ContactFormArea {
    padding: 89px 0;
    background: var(--cloud-silver);
}

.ContactHeaderContent {
    text-align: center;
    margin-bottom: 55px;
}

.ContactMainTitle {
    font-size: 2.8rem;
    margin-bottom: 21px;
}

.ContactDescriptionText {
    font-size: 1.2rem;
    color: var(--slate-gray);
    max-width: 580px;
    margin: 0 auto;
}

.ContactContentLayout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 55px;
}

.ContactFormElement {
    background: white;
    padding: 42px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.FormGroupContainer {
    margin-bottom: 25px;
}

.FormLabelElement {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--burgundy-depth);
    font-size: 1rem;
}

.FormInputField,
.FormSelectField,
.FormTextareaField {
    width: 100%;
    padding: 13px 17px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
}

.FormInputField:focus,
.FormSelectField:focus,
.FormTextareaField:focus {
    outline: none;
    border-color: var(--coral-wave);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.FormTextareaField {
    resize: vertical;
    min-height: 120px;
}

.FormSubmitButton {
    background: var(--coral-wave);
    color: white;
    padding: 15px 34px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.FormSubmitButton:hover {
    background: var(--burgundy-depth);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.ContactInfoSection {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.ContactInfoItem {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.ContactIconGraphic {
    width: 32px;
    height: 32px;
    filter: none;
    flex-shrink: 0;
    margin-top: 5px;
}

.ContactInfoTitle {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--burgundy-depth);
}

.ContactInfoText {
    color: var(--slate-gray);
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.FooterMainSection {
    background: var(--burgundy-depth);
    color: white;
    padding: 55px 0 21px;
}

.FooterContentLayout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 34px;
}

.FooterLogoElement {
    height: 38px;
    width: auto;
    margin-bottom: 17px;
    filter: brightness(0) invert(1);
}

.FooterDescriptionText {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0;
}

.FooterSectionTitle {
    font-size: 1.2rem;
    margin-bottom: 17px;
    color: white;
}

.FooterLinksList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.FooterLinkItem {
    margin-bottom: 8px;
}

.FooterLinkElement {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.FooterLinkElement:hover {
    color: white;
}

.FooterContactItem {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
}

.FooterContactIcon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.FooterContactText {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.FooterBottomSection {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 21px;
    text-align: center;
}

.FooterCopyrightText {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

/* Адаптивность для мобильных устройств */
@media screen and (max-width: 890px) {
    .MobileMenuLabel {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .NavigationMenuWrapper {
        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;
        justify-content: flex-start;
        align-items: center;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    }

    .MenuItemsList {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .NavigationItemElement {
        width: 100%;
        text-align: center;
        margin: 13px 0;
    }

    .MenuLinkStyle {
        display: inline-block;
        padding: 13px 21px;
        font-size: 1.2rem;
        color: var(--burgundy-depth);
        width: 100%;
    }

    .MobileToggleInput:checked ~ .NavigationMenuWrapper {
        left: 0;
    }

    .MobileToggleInput:checked ~ .MobileMenuLabel .HamburgerIconElement {
        background: transparent;
    }

    .MobileToggleInput:checked ~ .MobileMenuLabel .HamburgerIconElement:before {
        transform: rotate(45deg);
        top: 0;
    }

    .MobileToggleInput:checked ~ .MobileMenuLabel .HamburgerIconElement:after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* Hero адаптация */
    .HeroContentLayout {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .MainHeadingTitle {
        font-size: 2.5rem;
    }

    .ActionButtonsGroup {
        justify-content: center;
    }

    /* Services адаптация */
    .ServicesGridLayout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* About адаптация */
    .AboutContentLayout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    /* CTA адаптация */
    .CTAContentLayout {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    /* Contact адаптация */
    .ContactContentLayout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ContactFormElement {
        padding: 25px;
    }

    /* Footer адаптация */
    .FooterContentLayout {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .ContentContainerWrapper {
        padding: 0 17px;
    }

    .MainHeadingTitle {
        font-size: 2.2rem;
    }

    .SectionMainTitle {
        font-size: 2.2rem;
    }

    .ActionButtonsGroup {
        flex-direction: column;
        align-items: center;
    }

    .PrimaryActionButton,
    .SecondaryActionButton {
        width: 100%;
        max-width: 280px;
    }

    .ServiceCardElement {
        padding: 25px;
    }

    .ContactFormElement {
        padding: 21px;
    }
}

/* Дополнительные стили для About и Thank You страниц */

/* About Page Styles */
.AboutHeroBannerArea {
    background: linear-gradient(135deg, var(--pearl-mist) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 140px 0 89px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.AboutHeroContentLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.AboutMainHeadingTitle {
    font-size: 3.2rem;
    margin-bottom: 21px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--burgundy-depth) 0%, var(--coral-wave) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.AboutSubtitleDescription {
    font-size: 1.2rem;
    color: var(--slate-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.AboutHeroImageElement {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.AboutHeroImageElement:hover {
    transform: scale(1.02);
}

/* Mission Section */
.MissionVisionArea {
    padding: 89px 0;
    background: white;
}

.MissionVisionLayout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 55px;
    align-items: center;
}

.MissionHeadingTitle {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: var(--burgundy-depth);
}

.MissionDescriptionText {
    font-size: 1.15rem;
    color: var(--slate-gray);
    margin-bottom: 34px;
    line-height: 1.8;
}

.MissionValuesList {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.ValueItemElement {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 0;
}

.ValueIconGraphic {
    width: 28px;
    height: 28px;
    filter: none;
}

.ValueTextContent {
    font-size: 1.1rem;
    color: var(--burgundy-depth);
    font-weight: 500;
}

.MissionImageElement {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Approach Section */
.ApproachMethodArea {
    padding: 89px 0;
    background: var(--cloud-silver);
}

.ApproachHeaderContent {
    text-align: center;
    margin-bottom: 55px;
}

.ApproachMainTitle {
    font-size: 2.8rem;
    margin-bottom: 21px;
    color: var(--burgundy-depth);
}

.ApproachDescriptionText {
    font-size: 1.2rem;
    color: var(--slate-gray);
    max-width: 640px;
    margin: 0 auto;
}

.ApproachGridLayout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.ApproachCardElement {
    background: white;
    padding: 34px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.ApproachCardElement:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--coral-wave);
}

.ApproachCardHeader {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 17px;
}

.ApproachIconGraphic {
    width: 32px;
    height: 32px;
    filter: none;
}

.ApproachCardTitle {
    font-size: 1.3rem;
    color: var(--burgundy-depth);
    margin: 0;
}

.ApproachCardDescription {
    color: var(--slate-gray);
    line-height: 1.7;
    margin: 0;
}

/* Experience Section */
.ExperienceShowcaseArea {
    padding: 89px 0;
    background: white;
}

.ExperienceContentLayout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 55px;
    align-items: center;
}

.ExperienceImageElement {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.ExperienceHeadingTitle {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: var(--burgundy-depth);
}

.ExperienceDescriptionText {
    font-size: 1.15rem;
    color: var(--slate-gray);
    margin-bottom: 34px;
    line-height: 1.8;
}

.ExperienceStatsContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.StatItemElement {
    text-align: center;
    padding: 21px;
    background: var(--pearl-mist);
    border-radius: 12px;
}

.StatNumberText {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--coral-wave);
    margin-bottom: 8px;
}

.StatLabelText {
    font-size: 0.95rem;
    color: var(--burgundy-depth);
    font-weight: 500;
}

/* Why Choose Us Section */
.WhyChooseUsArea {
    padding: 89px 0;
    background: var(--cloud-silver);
}

.WhyChooseUsHeaderContent {
    text-align: center;
    margin-bottom: 55px;
}

.WhyChooseUsMainTitle {
    font-size: 2.8rem;
    margin-bottom: 21px;
    color: var(--burgundy-depth);
}

.WhyChooseUsDescriptionText {
    font-size: 1.2rem;
    color: var(--slate-gray);
    max-width: 640px;
    margin: 0 auto;
}

.BenefitsGridLayout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.BenefitCardElement {
    background: white;
    padding: 34px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.BenefitCardElement:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--coral-wave);
}

.BenefitCardIcon {
    width: 48px;
    height: 48px;
    margin: 0 auto 21px;
    filter: none;
}

.BenefitCardTitle {
    font-size: 1.3rem;
    margin-bottom: 13px;
    color: var(--burgundy-depth);
}

.BenefitCardText {
    color: var(--slate-gray);
    line-height: 1.7;
    margin: 0;
}

/* About CTA Section */
.AboutCTAArea {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--coral-wave) 0%, var(--burgundy-depth) 100%);
    color: white;
}

.AboutCTAContentLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.AboutCTAHeadingTitle {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: white;
}

.AboutCTADescriptionText {
    font-size: 1.2rem;
    margin-bottom: 34px;
    opacity: 0.95;
    line-height: 1.7;
}

.AboutCTAPrimaryButton {
    background: white;
    color: var(--coral-wave);
    padding: 15px 29px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.AboutCTAPrimaryButton:hover {
    background: var(--pearl-mist);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.AboutCTAImageElement {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Thank You Page Styles */
.ThankYouHeroBannerArea {
    background: linear-gradient(135deg, var(--emerald-fresh) 0%, var(--mint-whisper) 100%);
    padding: 140px 0 89px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ThankYouContentLayout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 55px;
    align-items: center;
}

.SuccessIconContainer {
    width: 89px;
    height: 89px;
    background: var(--emerald-fresh);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 34px 0;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.SuccessIconGraphic {
    width: 42px;
    height: 42px;
    filter: brightness(0) invert(1);
}

.ThankYouMainHeadingTitle {
    font-size: 3.2rem;
    margin-bottom: 21px;
    line-height: 1.2;
    color: var(--burgundy-depth);
}

.ThankYouSubtitleDescription {
    font-size: 1.25rem;
    margin-bottom: 42px;
    color: var(--slate-gray);
    line-height: 1.7;
}

.NextStepsContainer {
    margin-bottom: 42px;
}

.NextStepsTitle {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--burgundy-depth);
}

.StepsListContainer {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.StepItemElement {
    display: flex;
    gap: 21px;
    align-items: flex-start;
}

.StepNumberCircle {
    width: 42px;
    height: 42px;
    background: var(--coral-wave);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.StepContentBox {
    flex: 1;
}

.StepTitle {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--burgundy-depth);
}

.StepDescription {
    color: var(--slate-gray);
    margin: 0;
    line-height: 1.6;
}

.AdditionalInfoSection {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 34px;
}

.InfoSectionTitle {
    font-size: 1.3rem;
    margin-bottom: 13px;
    color: var(--burgundy-depth);
}

.InfoSectionText {
    color: var(--slate-gray);
    margin: 0;
    line-height: 1.7;
}

.ThankYouImageElement {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for About and Thank You Pages */
@media screen and (max-width: 890px) {
    .AboutHeroContentLayout,
    .MissionVisionLayout,
    .ExperienceContentLayout,
    .AboutCTAContentLayout,
    .ThankYouContentLayout {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .AboutMainHeadingTitle,
    .ThankYouMainHeadingTitle {
        font-size: 2.5rem;
    }

    .ApproachGridLayout,
    .BenefitsGridLayout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ExperienceStatsContainer {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .SuccessIconContainer {
        margin: 0 auto 34px;
    }
}

@media screen and (max-width: 640px) {
    .AboutMainHeadingTitle,
    .ThankYouMainHeadingTitle {
        font-size: 2.2rem;
    }

    .ApproachMainTitle,
    .WhyChooseUsMainTitle {
        font-size: 2.2rem;
    }

    .ApproachCardElement,
    .BenefitCardElement {
        padding: 25px;
    }

    .AdditionalInfoSection {
        padding: 21px;
    }

    .StepItemElement {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }
}