/* ReputationGuard - Modern CSS Framework */
/* Custom Color Variables */
:root {
    --crimson-primary: #e63946;
    --soft-blush: #fdeaeb;
    --deep-burgundy: #c8252f;
    --sage-secondary: #6a994e;
    --mint-whisper: #a7c957;
    --golden-accent: #f77f00;
    --cream-light: #fcbf49;
    --ocean-blue: #219ebc;
    --sky-powder: #8ecae6;
    --charcoal-neutral: #2d3748;
    --silver-mist: #e2e8f0;
    --success-emerald: #38a169;
    --warning-amber: #d69e2e;
    --info-sapphire: #3182ce;
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--charcoal-neutral);
    background-color: #ffffff;
    font-size: 16px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.3rem; }
h3 { font-size: 1.9rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1.2rem;
    color: var(--charcoal-neutral);
}

/* Layout Utilities */
.LayoutWrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation Styles */
.MainNavigationContainer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--silver-mist);
}

.PrimaryNavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.BrandLogo img {
    height: 42px;
    width: auto;
}

.NavigationToggle {
    display: none;
}

.ToggleButton {
    display: none;
}

.BurgerIcon {
    width: 28px;
    height: 3px;
    background: var(--charcoal-neutral);
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.BurgerIcon:before,
.BurgerIcon:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--charcoal-neutral);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.BurgerIcon:before { top: -9px; }
.BurgerIcon:after { top: 9px; }

.NavigationMenu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.MenuEntry {
    list-style: none;
}

.NavigationLink {
    color: var(--charcoal-neutral);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
}

.NavigationLink:hover {
    color: var(--crimson-primary);
}

.NavigationLink:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--crimson-primary);
}

/* Hero Section */
.HeroPresentation {
    padding: 140px 0 89px 0;
    background: linear-gradient(135deg, var(--soft-blush) 0%, #ffffff 100%);
    overflow: hidden;
}

.HeroBanner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 55px;
    align-items: center;
    min-height: 520px;
}

.ContentArea {
    padding-right: 21px;
}

.MainHeadline {
    font-size: 3.2rem;
    color: var(--deep-burgundy);
    margin-bottom: 21px;
    line-height: 1.2;
}

.LeadText {
    font-size: 19px;
    color: var(--charcoal-neutral);
    margin-bottom: 34px;
    line-height: 1.6;
}

.ActionButtons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.PrimaryCTA, .SecondaryCTA {
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.PrimaryCTA {
    background: var(--crimson-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.PrimaryCTA:hover {
    background: var(--deep-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.SecondaryCTA {
    background: transparent;
    color: var(--crimson-primary);
    border: 2px solid var(--crimson-primary);
}

.SecondaryCTA:hover {
    background: var(--crimson-primary);
    color: white;
    transform: translateY(-2px);
}

.HeroImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.ServicesShowcase {
    padding: 89px 0;
    background: #ffffff;
}

.SectionHeader {
    text-align: center;
    margin-bottom: 68px;
}

.SectionTitle {
    color: var(--deep-burgundy);
    margin-bottom: 17px;
}

.SectionSubtitle {
    font-size: 18px;
    color: var(--charcoal-neutral);
    max-width: 640px;
    margin: 0 auto;
}

.ServiceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 34px;
}

.ServiceCard {
    background: white;
    padding: 34px 28px;
    border-radius: 13px;
    border: 1px solid var(--silver-mist);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.ServiceCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.1);
    border-color: var(--crimson-primary);
}

.ServiceIcon {
    width: 68px;
    height: 68px;
    background: var(--soft-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px auto;
    transition: all 0.3s ease;
}

.ServiceCard:hover .ServiceIcon {
    background: var(--crimson-primary);
}

.IconElement {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(19%) sepia(23%) saturate(1354%) hue-rotate(315deg) brightness(96%) contrast(91%);
    transition: filter 0.3s ease;
}

.ServiceCard:hover .IconElement {
    filter: brightness(0) invert(1);
}

.ServiceName {
    color: var(--deep-burgundy);
    margin-bottom: 13px;
    font-size: 1.4rem;
}

.ServiceDetail {
    color: var(--charcoal-neutral);
    line-height: 1.6;
}

/* Programs Section */
.ProgramsSection {
    padding: 89px 0;
    background: var(--soft-blush);
}

.ContentLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.ProgramTitle {
    color: var(--deep-burgundy);
    margin-bottom: 21px;
}

.ProgramDescription {
    font-size: 17px;
    margin-bottom: 34px;
    line-height: 1.7;
}

.ProgramFeatures {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.FeatureItem {
    display: flex;
    align-items: center;
    gap: 13px;
}

.CheckIcon {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(87deg) brightness(119%) contrast(119%);
}

.ProgramImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.CallToActionSection {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--crimson-primary) 0%, var(--deep-burgundy) 100%);
    color: white;
    text-align: center;
}

.CTATitle {
    color: white;
    margin-bottom: 21px;
}

.CTAText {
    font-size: 18px;
    margin-bottom: 34px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.CTAButton {
    background: white;
    color: var(--crimson-primary);
    padding: 17px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.CTAButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 28px rgba(255, 255, 255, 0.3);
}

/* Consultation Section */
.ConsultationSection {
    padding: 89px 0;
    background: #ffffff;
}

.ConsultationGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
    margin-top: 55px;
}

.ConsultationCard {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ConsultationCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.ConsultationImage {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.CardContent {
    padding: 28px;
}

.CardTitle {
    color: var(--deep-burgundy);
    margin-bottom: 13px;
    font-size: 1.3rem;
}

.CardText {
    color: var(--charcoal-neutral);
    line-height: 1.6;
}

/* Contact Section */
.ContactSection {
    padding: 89px 0;
    background: var(--soft-blush);
}

.ContactContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: start;
}

.ContactTitle {
    color: var(--deep-burgundy);
    margin-bottom: 21px;
}

.ContactText {
    font-size: 17px;
    margin-bottom: 34px;
    line-height: 1.7;
}

.ContactDetails {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.ContactItem {
    display: flex;
    align-items: center;
    gap: 13px;
}

.ContactIcon {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(19%) sepia(23%) saturate(1354%) hue-rotate(315deg) brightness(96%) contrast(91%);
}

/* Form Styles */
.FormContainer {
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
}

.FormGroup {
    margin-bottom: 21px;
}

.FormLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal-neutral);
}

.FormInput, .FormSelect, .FormTextarea {
    width: 100%;
    padding: 13px 17px;
    border: 2px solid var(--silver-mist);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.FormInput:focus, .FormSelect:focus, .FormTextarea:focus {
    outline: none;
    border-color: var(--crimson-primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.FormTextarea {
    resize: vertical;
    min-height: 120px;
}

.SubmitButton {
    background: var(--crimson-primary);
    color: white;
    padding: 15px 34px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.SubmitButton:hover {
    background: var(--deep-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

/* Footer Styles */
.PageFooter {
    background: var(--charcoal-neutral);
    color: white;
    padding: 55px 0 21px 0;
}

.FooterContent {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 55px;
    margin-bottom: 34px;
}

.FooterLogo {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 17px;
}

.FooterDescription {
    color: #cbd5e0;
    line-height: 1.6;
}

.FooterLinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.LinkTitle {
    color: white;
    margin-bottom: 17px;
    font-size: 1.2rem;
}

.LinkList {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.FooterLink {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.25s ease;
}

.FooterLink:hover {
    color: var(--crimson-primary);
}

.FooterContact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #cbd5e0;
}

.FooterIcon {
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
}

.FooterBottom {
    border-top: 1px solid #4a5568;
    padding-top: 21px;
    text-align: center;
}

.Copyright {
    color: #cbd5e0;
    margin: 0;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .ToggleButton {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .NavigationMenu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .MenuEntry {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .NavigationLink {
        display: inline-block;
        padding: 13px 21px;
        font-size: 19px;
        color: var(--charcoal-neutral);
    }

    .NavigationToggle:checked ~ .NavigationMenu {
        left: 0;
    }

    .NavigationToggle:checked ~ .ToggleButton .BurgerIcon {
        background: transparent;
    }

    .NavigationToggle:checked ~ .ToggleButton .BurgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .NavigationToggle:checked ~ .ToggleButton .BurgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 1340px) {
    .LayoutWrapper {
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 890px) {
    .HeroBanner {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .MainHeadline {
        font-size: 2.5rem;
    }

    .ContentLayout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ContactContainer {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .FooterContent {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .FooterLinks {
        grid-template-columns: 1fr;
        gap: 21px;
    }
}

@media screen and (max-width: 640px) {
    .LayoutWrapper {
        padding: 0 1rem;
    }

    .HeroPresentation {
        padding: 120px 0 55px 0;
    }

    .ServicesShowcase,
    .ProgramsSection,
    .CallToActionSection,
    .ConsultationSection,
    .ContactSection {
        padding: 55px 0;
    }

    .ServiceGrid {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .ConsultationGrid {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .MainHeadline {
        font-size: 2.1rem;
    }

    .SectionTitle {
        font-size: 1.9rem;
    }

    .ActionButtons {
        flex-direction: column;
        align-items: center;
    }

    .PrimaryCTA, .SecondaryCTA {
        width: 100%;
        text-align: center;
    }
}

/* About Page Specific Styles */
.AboutHeroSection {
    padding: 140px 0 89px 0;
    background: linear-gradient(135deg, var(--mint-whisper) 0%, #ffffff 100%);
    overflow: hidden;
}

.AboutHeroBanner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 68px;
    align-items: center;
    min-height: 480px;
}

.AboutMainTitle {
    font-size: 3rem;
    color: var(--deep-burgundy);
    margin-bottom: 21px;
    line-height: 1.2;
}

.AboutLeadText {
    font-size: 19px;
    color: var(--charcoal-neutral);
    margin-bottom: 0;
    line-height: 1.7;
}

.AboutHeroImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Brand Management Section */
.BrandManagementSection {
    padding: 89px 0;
    background: #ffffff;
}

.BrandLayout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 68px;
    align-items: center;
}

.BrandTitle {
    color: var(--deep-burgundy);
    margin-bottom: 21px;
}

.BrandDescription {
    font-size: 17px;
    margin-bottom: 34px;
    line-height: 1.7;
}

.BrandFeatures {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.BrandFeatureItem {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 17px;
    background: var(--soft-blush);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.BrandFeatureItem:hover {
    transform: translateX(8px);
    background: var(--crimson-primary);
    color: white;
}

.BrandIcon {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(19%) sepia(23%) saturate(1354%) hue-rotate(315deg) brightness(96%) contrast(91%);
    transition: filter 0.3s ease;
}

.BrandFeatureItem:hover .BrandIcon {
    filter: brightness(0) invert(1);
}

.BrandFeatureText h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.BrandFeatureText p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.BrandImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Philosophy Section */
.PhilosophySection {
    padding: 89px 0;
    background: var(--soft-blush);
}

.PhilosophyHeader {
    text-align: center;
    margin-bottom: 68px;
}

.PhilosophyTitle {
    color: var(--deep-burgundy);
    margin-bottom: 17px;
}

.PhilosophySubtitle {
    font-size: 18px;
    color: var(--charcoal-neutral);
}

.PhilosophyGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.PhilosophyCard {
    background: white;
    padding: 34px 28px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.PhilosophyCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.PhilosophyIconWrapper {
    width: 68px;
    height: 68px;
    background: var(--crimson-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px auto;
}

.PhilosophyIcon {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

.PhilosophyCardTitle {
    color: var(--deep-burgundy);
    margin-bottom: 13px;
    font-size: 1.4rem;
}

.PhilosophyCardText {
    color: var(--charcoal-neutral);
    line-height: 1.6;
}

/* Success Stories Section */
.SuccessStoriesSection {
    padding: 89px 0;
    background: #ffffff;
}

.SuccessHeader {
    text-align: center;
    margin-bottom: 68px;
}

.SuccessTitle {
    color: var(--deep-burgundy);
    margin-bottom: 17px;
}

.SuccessSubtitle {
    font-size: 18px;
    color: var(--charcoal-neutral);
}

.SuccessGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 34px;
}

.SuccessStoryCard {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.SuccessStoryCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.SuccessImage {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.SuccessContent {
    padding: 28px;
}

.SuccessStoryTitle {
    color: var(--deep-burgundy);
    margin-bottom: 13px;
    font-size: 1.3rem;
}

.SuccessStoryText {
    color: var(--charcoal-neutral);
    line-height: 1.6;
    margin-bottom: 21px;
}

.SuccessMetrics {
    display: flex;
    gap: 13px;
}

.MetricItem {
    background: var(--soft-blush);
    color: var(--deep-burgundy);
    padding: 8px 13px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

/* Training Skills Section */
.TrainingSkillsSection {
    padding: 89px 0;
    background: var(--soft-blush);
}

.TrainingLayout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 68px;
    align-items: center;
}

.TrainingImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.TrainingTitle {
    color: var(--deep-burgundy);
    margin-bottom: 21px;
}

.TrainingDescription {
    font-size: 17px;
    margin-bottom: 34px;
    line-height: 1.7;
}

.SkillsList {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.SkillItem {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 17px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.SkillIcon {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(19%) sepia(23%) saturate(1354%) hue-rotate(315deg) brightness(96%) contrast(91%);
}

/* Marketing Strategy Section */
.MarketingStrategySection {
    padding: 89px 0;
    background: #ffffff;
}

.StrategyHeader {
    text-align: center;
    margin-bottom: 68px;
}

.StrategyTitle {
    color: var(--deep-burgundy);
    margin-bottom: 17px;
}

.StrategySubtitle {
    font-size: 18px;
    color: var(--charcoal-neutral);
}

.StrategyGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.StrategyItem {
    background: white;
    padding: 28px 21px;
    border-radius: 12px;
    border: 1px solid var(--silver-mist);
    text-align: center;
    transition: all 0.3s ease;
}

.StrategyItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--crimson-primary);
}

.StrategyIconBox {
    width: 55px;
    height: 55px;
    background: var(--soft-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px auto;
    transition: all 0.3s ease;
}

.StrategyItem:hover .StrategyIconBox {
    background: var(--crimson-primary);
}

.StrategyIcon {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(19%) sepia(23%) saturate(1354%) hue-rotate(315deg) brightness(96%) contrast(91%);
    transition: filter 0.3s ease;
}

.StrategyItem:hover .StrategyIcon {
    filter: brightness(0) invert(1);
}

.StrategyItemTitle {
    color: var(--deep-burgundy);
    margin-bottom: 13px;
    font-size: 1.2rem;
}

.StrategyItemText {
    color: var(--charcoal-neutral);
    line-height: 1.6;
    font-size: 15px;
}

/* Resources Section */
.ResourcesSection {
    padding: 89px 0;
    background: var(--soft-blush);
}

.ResourcesContent {
    text-align: center;
}

.ResourcesTitle {
    color: var(--deep-burgundy);
    margin-bottom: 17px;
}

.ResourcesDescription {
    font-size: 18px;
    color: var(--charcoal-neutral);
    margin-bottom: 55px;
}

.ResourcesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 34px;
}

.ResourceCard {
    background: white;
    padding: 28px 21px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ResourceCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ResourceIconWrapper {
    width: 55px;
    height: 55px;
    background: var(--crimson-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px auto;
}

.ResourceIcon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.ResourceCardTitle {
    color: var(--deep-burgundy);
    margin-bottom: 13px;
    font-size: 1.1rem;
}

.ResourceCardText {
    color: var(--charcoal-neutral);
    line-height: 1.6;
    font-size: 15px;
}

/* Thank You Page Styles */
.ThankYouMainSection {
    padding: 140px 0 89px 0;
    background: linear-gradient(135deg, var(--soft-blush) 0%, #ffffff 100%);
    min-height: 80vh;
}

.ThankYouContainer {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 68px;
    align-items: start;
}

.ThankYouContent {
    text-align: center;
}

.SuccessIconWrapper {
    width: 89px;
    height: 89px;
    background: var(--success-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.ThankYouSuccessIcon {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.ThankYouTitle {
    color: var(--deep-burgundy);
    font-size: 3.2rem;
    margin-bottom: 13px;
}

.ThankYouSubtitle {
    color: var(--success-emerald);
    font-size: 1.5rem;
    margin-bottom: 28px;
    font-weight: 600;
}

.ThankYouMessage {
    font-size: 17px;
    color: var(--charcoal-neutral);
    line-height: 1.7;
    margin-bottom: 34px;
    text-align: left;
}

/* Next Steps */
.NextStepsContainer {
    margin: 55px 0;
    text-align: left;
}

.NextStepsTitle {
    color: var(--deep-burgundy);
    margin-bottom: 28px;
    text-align: center;
}

.StepsList {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.StepItem {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 21px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.StepItem:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.StepNumber {
    width: 34px;
    height: 34px;
    background: var(--crimson-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
}

.StepContent h4 {
    color: var(--deep-burgundy);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.StepContent p {
    margin: 0;
    color: var(--charcoal-neutral);
    font-size: 15px;
    line-height: 1.5;
}

/* Thank You Actions */
.ThankYouActions {
    display: flex;
    gap: 17px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
}

.ReturnHomeButton, .LearnMoreButton {
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.ReturnHomeButton {
    background: var(--crimson-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.ReturnHomeButton:hover {
    background: var(--deep-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.LearnMoreButton {
    background: transparent;
    color: var(--crimson-primary);
    border: 2px solid var(--crimson-primary);
}

.LearnMoreButton:hover {
    background: var(--crimson-primary);
    color: white;
    transform: translateY(-2px);
}

/* Thank You Visual */
.ThankYouVisual {
    position: relative;
}

.ThankYouImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.ContactInfoCard {
    background: white;
    padding: 21px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-top: 28px;
}

.ContactCardTitle {
    color: var(--deep-burgundy);
    margin-bottom: 17px;
    font-size: 1.1rem;
    text-align: center;
}

.ContactCardItem {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
}

.ContactCardIcon {
    width: 17px;
    height: 17px;
    filter: brightness(0) saturate(100%) invert(19%) sepia(23%) saturate(1354%) hue-rotate(315deg) brightness(96%) contrast(91%);
}

/* Additional Resources Section */
.AdditionalResourcesSection {
    padding: 68px 0;
    background: #ffffff;
}

.ResourcesHeader {
    text-align: center;
    margin-bottom: 55px;
}

.ResourcesHeaderTitle {
    color: var(--deep-burgundy);
    margin-bottom: 17px;
}

.ResourcesHeaderText {
    font-size: 17px;
    color: var(--charcoal-neutral);
}

.QuickResourcesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.QuickResourceCard {
    background: white;
    padding: 28px 21px;
    border-radius: 12px;
    border: 1px solid var(--silver-mist);
    text-align: center;
    transition: all 0.3s ease;
}

.QuickResourceCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--crimson-primary);
}

.QuickResourceIcon {
    width: 55px;
    height: 55px;
    background: var(--soft-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px auto;
    transition: all 0.3s ease;
}

.QuickResourceCard:hover .QuickResourceIcon {
    background: var(--crimson-primary);
}

.ResourceCardIcon {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(19%) sepia(23%) saturate(1354%) hue-rotate(315deg) brightness(96%) contrast(91%);
    transition: filter 0.3s ease;
}

.QuickResourceCard:hover .ResourceCardIcon {
    filter: brightness(0) invert(1);
}

.QuickResourceTitle {
    color: var(--deep-burgundy);
    margin-bottom: 13px;
    font-size: 1.1rem;
}

.QuickResourceText {
    color: var(--charcoal-neutral);
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive Design for About and Thank You Pages */
@media screen and (max-width: 890px) {
    .AboutHeroBanner,
    .BrandLayout,
    .TrainingLayout,
    .ThankYouContainer {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .AboutMainTitle,
    .ThankYouTitle {
        font-size: 2.5rem;
    }

    .PhilosophyGrid,
    .SuccessGrid,
    .StrategyGrid {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .ThankYouActions {
        flex-direction: column;
        align-items: center;
    }

    .ReturnHomeButton,
    .LearnMoreButton {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .AboutHeroSection,
    .ThankYouMainSection {
        padding: 120px 0 55px 0;
    }

    .BrandManagementSection,
    .PhilosophySection,
    .SuccessStoriesSection,
    .TrainingSkillsSection,
    .MarketingStrategySection,
    .ResourcesSection,
    .AdditionalResourcesSection {
        padding: 55px 0;
    }

    .AboutMainTitle,
    .ThankYouTitle {
        font-size: 2.1rem;
    }

    .BrandFeatures,
    .SkillsList,
    .StepsList {
        gap: 13px;
    }

    .ThankYouMessage {
        text-align: center;
    }

    .NextStepsContainer {
        text-align: center;
    }
}