/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sunset-orange: #fcbf49;
    --vanilla-cream: #fefaec;
    --golden-honey: #e5a626;
    --ocean-blue: #2563eb;
    --forest-green: #10b981;
    --crimson-red: #ef4444;
    --slate-gray: #64748b;
    --pearl-white: #f8fafc;
    --midnight-black: #0f172a;
    --warm-gray: #374151;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--warm-gray);
    background-color: var(--pearl-white);
}

.containerFluid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Navigation Styles */
.primaryNavigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 166, 38, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navigationBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.brandLogo img {
    height: 42px;
    width: auto;
    transition: transform 0.3s ease;
}

.brandLogo:hover img {
    transform: scale(1.05);
}

.navToggleInput {
    display: none;
}

.navToggleLabel {
    display: none;
}

.hamburgerIcon {
    width: 28px;
    height: 3px;
    background: var(--golden-honey);
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.hamburgerIcon:before,
.hamburgerIcon:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--golden-honey);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.hamburgerIcon:before {
    top: -9px;
}

.hamburgerIcon:after {
    top: 9px;
}

.navigationWrapper {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navigationList {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
}

.navigationLink {
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navigationLink:hover {
    color: var(--golden-honey);
}

.navigationLink::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sunset-orange);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navigationLink:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .navToggleLabel {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .navigationWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--pearl-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;
    }

    .navigationList {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .navListItem {
        width: 100%;
        text-align: center;
    }

    .navigationLink {
        display: inline-block;
        padding: 13px 21px;
        font-size: 18px;
        color: var(--warm-gray);
        width: 100%;
    }

    .navToggleInput:checked ~ .navigationWrapper {
        left: 0;
    }

    .navToggleInput:checked ~ .navToggleLabel .hamburgerIcon {
        background: transparent;
    }

    .navToggleInput:checked ~ .navToggleLabel .hamburgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navToggleInput:checked ~ .navToggleLabel .hamburgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.heroDisplayArea {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--vanilla-cream) 0%, rgba(252, 191, 73, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.heroDisplayArea::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(252, 191, 73, 0.05) 0%, transparent 70%);
    animation: heroGlow 20s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(180deg) scale(1.1); }
}

.heroContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.primaryHeroTitle {
    font-size: 48px;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 21px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}

.heroDescriptionText {
    font-size: 18px;
    color: var(--warm-gray);
    margin-bottom: 34px;
    line-height: 1.7;
}

.heroActionButtons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primaryActionButton,
.secondaryActionButton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.primaryActionButton {
    background: var(--sunset-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(252, 191, 73, 0.3);
}

.primaryActionButton:hover {
    background: var(--golden-honey);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 191, 73, 0.4);
}

.secondaryActionButton {
    background: transparent;
    color: var(--golden-honey);
    border: 2px solid var(--golden-honey);
}

.secondaryActionButton:hover {
    background: var(--golden-honey);
    color: white;
    transform: translateY(-2px);
}

.buttonIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.secondaryActionButton .buttonIcon {
    filter: none;
}

.secondaryActionButton:hover .buttonIcon {
    filter: brightness(0) invert(1);
}

.heroMainImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.heroMainImage:hover {
    transform: scale(1.02);
}

/* Services Section */
.servicesShowcase {
    padding: 89px 0;
    background: white;
}

.sectionHeaderText {
    text-align: center;
    margin-bottom: 55px;
}

.sectionMainTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 17px;
    font-family: 'Georgia', serif;
}

.sectionSubDescription {
    font-size: 18px;
    color: var(--warm-gray);
    max-width: 640px;
    margin: 0 auto;
}

.servicesGridLayout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 34px;
}

.serviceCardItem {
    background: white;
    padding: 34px;
    border-radius: 13px;
    text-align: center;
    border: 1px solid rgba(229, 166, 38, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.serviceCardItem::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 191, 73, 0.1), transparent);
    transition: left 0.5s ease;
}

.serviceCardItem:hover::before {
    left: 100%;
}

.serviceCardItem:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.1);
    border-color: var(--sunset-orange);
}

.serviceIconWrapper {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--golden-honey));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
    position: relative;
    z-index: 1;
}

.serviceIconImage {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

.serviceCardTitle {
    font-size: 21px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 13px;
    position: relative;
    z-index: 1;
}

.serviceCardDescription {
    color: var(--warm-gray);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Assessment Section */
.assessmentSection {
    padding: 89px 0;
    background: var(--vanilla-cream);
}

.assessmentContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.assessmentTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 21px;
    font-family: 'Georgia', serif;
}

.assessmentDescription {
    font-size: 17px;
    color: var(--warm-gray);
    margin-bottom: 28px;
    line-height: 1.7;
}

.assessmentFeaturesList {
    list-style: none;
    margin-bottom: 34px;
}

.assessmentFeatureItem {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--warm-gray);
}

.featureCheckIcon {
    width: 21px;
    height: 21px;
    filter: hue-rotate(120deg) saturate(2);
}

.assessmentActionButton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    background: var(--ocean-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.assessmentActionButton:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.assessmentVisualImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.callToActionSection {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--warm-gray) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.callToActionSection::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 1000 1000"><polygon fill="rgba(252,191,73,0.1)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.ctaContentWrapper {
    position: relative;
    z-index: 1;
}

.ctaMainHeading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 21px;
    font-family: 'Georgia', serif;
}

.ctaSubtext {
    font-size: 18px;
    margin-bottom: 34px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.ctaButtonGroup {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

.ctaPrimaryButton,
.ctaSecondaryButton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 17px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ctaPrimaryButton {
    background: var(--sunset-orange);
    color: white;
}

.ctaPrimaryButton:hover {
    background: var(--golden-honey);
    transform: translateY(-2px);
}

.ctaSecondaryButton {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.ctaSecondaryButton:hover {
    background: white;
    color: var(--midnight-black);
}

/* Programs Section */
.programsSection {
    padding: 89px 0;
    background: white;
}

.programsGridLayout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 34px;
}

.programCardItem {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.programCardItem:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.programImageWrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.programCardImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.programCardItem:hover .programCardImage {
    transform: scale(1.05);
}

.programCardContent {
    padding: 28px;
}

.programCardTitle {
    font-size: 23px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 13px;
}

.programCardDescription {
    color: var(--warm-gray);
    margin-bottom: 21px;
    line-height: 1.6;
}

.programFeatures {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.programFeatureTag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--vanilla-cream);
    color: var(--golden-honey);
    padding: 7px 13px;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 500;
}

.tagIcon {
    width: 15px;
    height: 15px;
}

/* Consultation Section */
.consultationSection {
    padding: 89px 0;
    background: var(--vanilla-cream);
}

.consultationContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.consultationTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 21px;
    font-family: 'Georgia', serif;
}

.consultationDescription {
    font-size: 17px;
    color: var(--warm-gray);
    margin-bottom: 34px;
    line-height: 1.7;
}

.consultationBenefitsList {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.benefitItem {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 21px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefitItem:hover {
    transform: translateX(8px);
}

.benefitIcon {
    width: 42px;
    height: 42px;
    background: var(--sunset-orange);
    border-radius: 50%;
    padding: 8px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.benefitTitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 5px;
}

.benefitDescription {
    color: var(--warm-gray);
    font-size: 15px;
}

.consultationVisualImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.contactFormSection {
    padding: 89px 0;
    background: white;
}

.contactSectionHeader {
    text-align: center;
    margin-bottom: 55px;
}

.contactSectionTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 17px;
    font-family: 'Georgia', serif;
}

.contactSectionSubtitle {
    font-size: 18px;
    color: var(--warm-gray);
    max-width: 540px;
    margin: 0 auto;
}

.contactContentGrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 55px;
    align-items: flex-start;
}

.modernContactForm {
    background: var(--vanilla-cream);
    padding: 42px;
    border-radius: 13px;
    border: 1px solid rgba(229, 166, 38, 0.1);
}

.formGroup {
    position: relative;
    margin-bottom: 28px;
}

.formLabel {
    display: block;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 8px;
    font-size: 15px;
}

.formInput,
.formSelect,
.formTextarea {
    width: 100%;
    padding: 15px 21px 15px 48px;
    border: 2px solid rgba(229, 166, 38, 0.2);
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.formInput:focus,
.formSelect:focus,
.formTextarea:focus {
    outline: none;
    border-color: var(--sunset-orange);
    box-shadow: 0 0 0 3px rgba(252, 191, 73, 0.1);
}

.inputIcon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    opacity: 0.6;
    pointer-events: none;
}

.formTextarea .inputIcon {
    top: 45px;
}

.formSubmitButton {
    width: 100%;
    padding: 17px;
    background: var(--sunset-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.formSubmitButton:hover {
    background: var(--golden-honey);
    transform: translateY(-2px);
}

.contactInfoCard {
    background: var(--vanilla-cream);
    padding: 34px;
    border-radius: 13px;
    border: 1px solid rgba(229, 166, 38, 0.1);
}

.contactInfoItem {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-bottom: 28px;
}

.contactInfoItem:last-child {
    margin-bottom: 0;
}

.contactInfoIcon {
    width: 48px;
    height: 48px;
    background: var(--sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.infoIcon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
}

.infoTitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 5px;
}

.infoDetails {
    color: var(--warm-gray);
    line-height: 1.5;
}

/* Footer */
.mainFooterSection {
    background: var(--midnight-black);
    color: white;
    padding: 55px 0 28px;
    position: relative;
    overflow: hidden;
}

.mainFooterSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--golden-honey), var(--sunset-orange));
}

.footerContentGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 34px;
}

.footerLogo {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 21px;
}

.footerBrandDescription {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 380px;
}

.footerContactInfo {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footerContactItem {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footerContactIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footerContactText {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footerColumnTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 21px;
    color: white;
}

.footerLinksList {
    list-style: none;
}

.footerLinkItem {
    margin-bottom: 13px;
}

.footerLink {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footerLink:hover {
    color: var(--sunset-orange);
    padding-left: 5px;
}

.footerBottomSection {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 21px;
    text-align: center;
}

.footerCopyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .containerFluid {
        max-width: 1140px;
    }
}

@media screen and (max-width: 890px) {
    .heroContentGrid,
    .assessmentContentGrid,
    .consultationContentGrid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .heroDisplayArea {
        padding: 120px 0 68px;
    }

    .primaryHeroTitle {
        font-size: 38px;
    }

    .heroActionButtons {
        justify-content: center;
    }

    .servicesGridLayout {
        grid-template-columns: 1fr;
    }

    .programsGridLayout {
        grid-template-columns: 1fr;
    }

    .contactContentGrid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footerContentGrid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .containerFluid {
        padding: 0 17px;
    }

    .primaryHeroTitle {
        font-size: 32px;
    }

    .sectionMainTitle,
    .assessmentTitle,
    .consultationTitle,
    .contactSectionTitle {
        font-size: 28px;
    }

    .heroActionButtons,
    .ctaButtonGroup {
        flex-direction: column;
        align-items: center;
    }

    .modernContactForm {
        padding: 28px;
    }

    .servicesGridLayout {
        grid-template-columns: 1fr;
    }

    .serviceCardItem {
        padding: 28px;
    }

    .ctaMainHeading {
        font-size: 34px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.serviceCardItem,
.programCardItem,
.benefitItem {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll to Top Button */
.scrollToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--sunset-orange);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scrollToTop.visible {
    opacity: 1;
    visibility: visible;
}

.scrollToTop:hover {
    background: var(--golden-honey);
    transform: translateY(-3px);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Form Validation Styles */
.formInput.error,
.formSelect.error,
.formTextarea.error {
    border-color: var(--crimson-red);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.errorMessage {
    color: var(--crimson-red);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.formGroup.error .errorMessage {
    display: block;
}

/* About Page Specific Styles */

/* About Hero Section */
.aboutHeroSection {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--vanilla-cream) 0%, rgba(252, 191, 73, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.aboutHeroGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.aboutPageTitle {
    font-size: 42px;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 21px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}

.aboutHeroDescription {
    font-size: 17px;
    color: var(--warm-gray);
    margin-bottom: 34px;
    line-height: 1.7;
}

.aboutStatsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.statItem {
    text-align: center;
    padding: 21px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.statItem:hover {
    transform: translateY(-5px);
}

.statIcon {
    width: 42px;
    height: 42px;
    margin: 0 auto 13px;
    background: var(--sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    filter: brightness(0) invert(1);
}

.statNumber {
    font-size: 28px;
    font-weight: 700;
    color: var(--golden-honey);
    margin-bottom: 5px;
}

.statLabel {
    color: var(--warm-gray);
    font-size: 14px;
    font-weight: 500;
}

.aboutMainImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.1);
}

/* Philosophy Section */
.philosophySection {
    padding: 89px 0;
    background: white;
}

.philosophyContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.philosophyTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 21px;
    font-family: 'Georgia', serif;
}

.philosophyDescription {
    font-size: 17px;
    color: var(--warm-gray);
    margin-bottom: 34px;
    line-height: 1.7;
}

.philosophyPrinciples {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.principleItem {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 21px;
    background: var(--vanilla-cream);
    border-radius: 8px;
    border-left: 4px solid var(--sunset-orange);
    transition: transform 0.3s ease;
}

.principleItem:hover {
    transform: translateX(8px);
}

.principleIcon {
    width: 34px;
    height: 34px;
    background: var(--sunset-orange);
    border-radius: 50%;
    padding: 6px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.principleTitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 5px;
}

.principleDesc {
    color: var(--warm-gray);
    font-size: 15px;
    line-height: 1.5;
}

.philosophyImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.1);
}

/* Success Stories Section */
.successStoriesSection {
    padding: 89px 0;
    background: var(--vanilla-cream);
}

.storiesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 34px;
}

.storyCard {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.storyCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.storyImageWrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.storyImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.storyCard:hover .storyImage {
    transform: scale(1.05);
}

.storyContent {
    padding: 28px;
}

.storyTitle {
    font-size: 21px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 13px;
}

.storyDescription {
    color: var(--warm-gray);
    margin-bottom: 21px;
    line-height: 1.6;
}

.storyResults {
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
}

.resultItem {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--vanilla-cream);
    color: var(--golden-honey);
    padding: 7px 13px;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 500;
}

.resultIcon {
    width: 16px;
    height: 16px;
}

/* Training Methods Section */
.trainingMethodsSection {
    padding: 89px 0;
    background: white;
}

.trainingContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.trainingTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 21px;
    font-family: 'Georgia', serif;
}

.trainingDescription {
    font-size: 17px;
    color: var(--warm-gray);
    margin-bottom: 34px;
    line-height: 1.7;
}

.methodsList {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.methodItem {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 21px;
    background: var(--vanilla-cream);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.methodItem:hover {
    background: white;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.methodIcon {
    width: 42px;
    height: 42px;
    background: var(--ocean-blue);
    border-radius: 50%;
    padding: 8px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.methodTitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 5px;
}

.methodDesc {
    color: var(--warm-gray);
    font-size: 15px;
    line-height: 1.5;
}

.trainingMethodImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.1);
}

/* Expertise Section */
.expertiseSection {
    padding: 89px 0;
    background: var(--vanilla-cream);
}

.expertiseGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.expertiseCard {
    background: white;
    padding: 34px;
    border-radius: 13px;
    text-align: center;
    border: 1px solid rgba(229, 166, 38, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.expertiseCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.1);
    border-color: var(--sunset-orange);
}

.expertiseIcon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--forest-green), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
}

.expertiseImage {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

.expertiseTitle {
    font-size: 21px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 13px;
}

.expertiseDescription {
    color: var(--warm-gray);
    line-height: 1.6;
}

/* Tools & Resources Section */
.toolsResourcesSection {
    padding: 89px 0;
    background: white;
}

.toolsContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.toolsTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 21px;
    font-family: 'Georgia', serif;
}

.toolsDescription {
    font-size: 17px;
    color: var(--warm-gray);
    margin-bottom: 34px;
    line-height: 1.7;
}

.resourcesList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.resourceItem {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    background: var(--vanilla-cream);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resourceItem:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.resourceIcon {
    width: 28px;
    height: 28px;
    background: var(--crimson-red);
    border-radius: 50%;
    padding: 5px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.resourceTitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 3px;
}

.resourceDesc {
    color: var(--warm-gray);
    font-size: 13px;
    line-height: 1.4;
}

.toolsImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.1);
}

/* About CTA Section */
.aboutCtaSection {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.aboutCtaTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 21px;
    font-family: 'Georgia', serif;
}

.aboutCtaDescription {
    font-size: 18px;
    margin-bottom: 34px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.aboutCtaButtons {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

.aboutCtaPrimary,
.aboutCtaSecondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 17px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.aboutCtaPrimary {
    background: var(--sunset-orange);
    color: white;
}

.aboutCtaPrimary:hover {
    background: var(--golden-honey);
    transform: translateY(-2px);
}

.aboutCtaSecondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.aboutCtaSecondary:hover {
    background: white;
    color: var(--ocean-blue);
}

/* Thank You Page Styles */

/* Thank You Hero */
.thankYouHeroSection {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--vanilla-cream) 0%, rgba(16, 185, 129, 0.1) 100%);
    text-align: center;
}

.thankYouContentWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}

.successIconWrapper {
    margin-bottom: 28px;
}

.successIcon {
    width: 89px;
    height: 89px;
    background: var(--forest-green);
    border-radius: 50%;
    padding: 21px;
    filter: brightness(0) invert(1);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thankYouTitle {
    font-size: 38px;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 21px;
    font-family: 'Georgia', serif;
}

.thankYouDescription {
    font-size: 17px;
    color: var(--warm-gray);
    margin-bottom: 42px;
    line-height: 1.7;
    max-width: 540px;
}

.nextStepsSection {
    text-align: left;
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.08);
}

.nextStepsTitle {
    font-size: 23px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 21px;
    text-align: center;
}

.stepsGrid {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.stepItem {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 17px;
    background: var(--vanilla-cream);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stepItem:hover {
    transform: translateX(5px);
}

.stepIconWrapper {
    width: 42px;
    height: 42px;
    background: var(--sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stepIcon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
}

.stepTitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 3px;
}

.stepDescription {
    color: var(--warm-gray);
    font-size: 14px;
    line-height: 1.4;
}

.thankYouImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.1);
}

/* Additional Resources */
.additionalResourcesSection {
    padding: 89px 0;
    background: white;
}

.resourcesHeader {
    text-align: center;
    margin-bottom: 55px;
}

.resourcesTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 17px;
    font-family: 'Georgia', serif;
}

.resourcesSubtitle {
    font-size: 18px;
    color: var(--warm-gray);
    max-width: 640px;
    margin: 0 auto;
}

.resourceCardsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.resourceCard {
    background: var(--vanilla-cream);
    padding: 34px;
    border-radius: 13px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.resourceCard:hover {
    background: white;
    border-color: var(--sunset-orange);
    transform: translateY(-5px);
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
}

.resourceIconWrapper {
    width: 68px;
    height: 68px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
}

.resourceIcon {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

.resourceCardTitle {
    font-size: 21px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 13px;
}

.resourceCardDescription {
    color: var(--warm-gray);
    margin-bottom: 21px;
    line-height: 1.6;
}

.resourceItems {
    list-style: none;
    text-align: left;
    background: white;
    padding: 17px;
    border-radius: 8px;
}

.resourceCard:hover .resourceItems {
    background: var(--vanilla-cream);
}

.resourceItem {
    padding: 8px 0;
    color: var(--warm-gray);
    font-size: 15px;
    border-bottom: 1px solid rgba(229, 166, 38, 0.1);
    position: relative;
    padding-left: 21px;
}

.resourceItem:last-child {
    border-bottom: none;
}

.resourceItem:before {
    content: '•';
    color: var(--sunset-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Success Preview */
.successPreviewSection {
    padding: 89px 0;
    background: var(--vanilla-cream);
}

.successPreviewGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.previewTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 21px;
    font-family: 'Georgia', serif;
}

.previewDescription {
    font-size: 17px;
    color: var(--warm-gray);
    margin-bottom: 34px;
    line-height: 1.7;
}

.previewStats {
    display: flex;
    gap: 28px;
    margin-bottom: 34px;
}

.previewStatItem {
    display: flex;
    align-items: center;
    gap: 13px;
    background: white;
    padding: 21px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.previewStatIcon {
    width: 34px;
    height: 34px;
    background: var(--forest-green);
    border-radius: 50%;
    padding: 6px;
    filter: brightness(0) invert(1);
}

.previewStatNumber {
    font-size: 24px;
    font-weight: 700;
    color: var(--golden-honey);
    margin-bottom: 3px;
}

.previewStatLabel {
    color: var(--warm-gray);
    font-size: 14px;
}

.previewButton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    background: var(--sunset-orange);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.previewButton:hover {
    background: var(--golden-honey);
    transform: translateY(-2px);
}

.previewImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.1);
}

/* Thank You Contact */
.thankYouContactSection {
    padding: 68px 0;
    background: white;
    text-align: center;
}

.contactInfoTitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 13px;
}

.contactInfoDescription {
    font-size: 16px;
    color: var(--warm-gray);
    margin-bottom: 34px;
}

.contactQuick