/* CSS Variables */
:root {
    --cardinal-red: #e63946;
    --soft-blush: #fdeaeb;
    --deep-crimson: #c8252f;
    --secondary-tone: #2c5f41;
    --secondary-light: #e8f5e8;
    --tertiary-accent: #f77f00;
    --tertiary-soft: #fff3e6;
    --accent-blue: #219ebc;
    --accent-pale: #e6f7ff;
    --neutral-gray: #6c757d;
    --neutral-whisper: #f8f9fa;
    --info-shade: #0077be;
    --warning-alert: #dc3545;
    --success-green: #28a745;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --background-main: #ffffff;
    --border-subtle: #dee2e6;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-main);
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.6rem; }
h3 { font-size: 2.1rem; }
h4 { font-size: 1.8rem; }

p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

/* Layout Components */
.LayoutContainer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

.WideArea {
    max-width: 100%;
    padding: 0 34px;
}

/* Navigation Styles */
.MainNavigation {
    background: var(--background-main);
    padding: 13px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.NavigationWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.LogoBrand img {
    height: 47px;
    width: auto;
}

.MobileToggle {
    display: none;
}

.ToggleController {
    display: none;
}

.HamburgerIcon {
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.HamburgerIcon:before,
.HamburgerIcon:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.HamburgerIcon:before { top: -8px; }
.HamburgerIcon:after { top: 8px; }

.MenuWrapper {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.MenuEntry {
    list-style: none;
}

.MenuLink {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.MenuLink:hover {
    color: var(--cardinal-red);
}

.MenuLink::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cardinal-red);
    transition: width 0.3s ease;
}

.MenuLink:hover::after {
    width: 100%;
}

/* Hero Section */
.HeroWorkspace {
    padding: 120px 0 89px;
    background: linear-gradient(135deg, var(--soft-blush) 0%, var(--neutral-whisper) 100%);
}

.ContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.PrimaryHeading {
    font-size: 3.5rem;
    color: var(--deep-crimson);
    margin-bottom: 24px;
    line-height: 1.2;
}

.DescriptiveText {
    font-size: 1.2rem;
    margin-bottom: 34px;
    color: var(--text-secondary);
}

.ActionButtons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.PrimaryCallAction, .SecondaryCallAction {
    padding: 15px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.PrimaryCallAction {
    background: var(--cardinal-red);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.PrimaryCallAction:hover {
    background: var(--deep-crimson);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.SecondaryCallAction {
    background: transparent;
    color: var(--cardinal-red);
    border: 2px solid var(--cardinal-red);
}

.SecondaryCallAction:hover {
    background: var(--cardinal-red);
    color: white;
    transform: translateY(-2px);
}

.VisualContent img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.ServicesShowcase {
    padding: 89px 0;
    background: var(--background-main);
}

.SectionHeading {
    text-align: center;
    margin-bottom: 55px;
    color: var(--deep-crimson);
}

.ServicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.ServiceBlock {
    background: var(--neutral-whisper);
    padding: 34px;
    border-radius: 13px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.ServiceBlock:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ServiceIconWrapper {
    width: 64px;
    height: 64px;
    background: var(--cardinal-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
}

.ServiceIcon {
    width: 32px;
    height: 32px;
    color: white;
}

.ServiceTitle {
    color: var(--deep-crimson);
    margin-bottom: 15px;
}

/* About Section */
.AboutWorkspace {
    padding: 89px 0;
    background: var(--soft-blush);
}

.ReversedLayout {
    grid-template-columns: 1fr 1fr;
}

.FeatureList {
    margin-top: 24px;
}

.FeatureItem {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
}

.FeatureIcon {
    width: 20px;
    height: 20px;
    color: var(--cardinal-red);
}

/* Programs Section */
.ProgramsShowcase {
    padding: 89px 0;
    background: var(--background-main);
}

.ProgramsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.ProgramCard {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ProgramCard:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ProgramCard img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ProgramTitle {
    padding: 21px 21px 8px;
    color: var(--deep-crimson);
    font-size: 1.3rem;
}

.ProgramBrief {
    padding: 0 21px 21px;
    color: var(--text-secondary);
}

/* CTA Section */
.CallToActionArea {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--cardinal-red) 0%, var(--deep-crimson) 100%);
    color: white;
}

.CTAContent {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.CTAHeading {
    color: white;
    margin-bottom: 21px;
}

.CTADescription {
    font-size: 1.1rem;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.9);
}

.CTAButton {
    background: white;
    color: var(--cardinal-red);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.CTAButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.ContactWorkspace {
    padding: 89px 0;
    background: var(--neutral-whisper);
}

.ContactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
}

.ContactInfo {
    padding: 34px;
}

.InfoHeading {
    color: var(--deep-crimson);
    margin-bottom: 34px;
}

.ContactDetail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.ContactIcon {
    width: 24px;
    height: 24px;
    color: var(--cardinal-red);
}

/* Form Styles */
.FormWrapper {
    background: white;
    padding: 40px;
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.FormGroup {
    margin-bottom: 24px;
}

.FormInput, .FormSelect, .FormTextarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-subtle);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.FormInput:focus, .FormSelect:focus, .FormTextarea:focus {
    outline: none;
    border-color: var(--cardinal-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.FormTextarea {
    resize: vertical;
    min-height: 120px;
}

.FormSubmit {
    background: var(--cardinal-red);
    color: white;
    padding: 15px 34px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.FormSubmit:hover {
    background: var(--deep-crimson);
    transform: translateY(-2px);
}

/* Footer */
.FooterArea {
    background: var(--text-primary);
    color: white;
    padding: 55px 0 21px;
}

.FooterGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
    margin-bottom: 34px;
}

.FooterLogo {
    height: 40px;
    margin-bottom: 21px;
    filter: brightness(0) invert(1);
}

.FooterDescription {
    color: rgba(255, 255, 255, 0.8);
}

.FooterHeading {
    color: white;
    margin-bottom: 21px;
    font-size: 1.2rem;
}

.FooterLinks {
    list-style: none;
}

.FooterLinks li {
    margin-bottom: 8px;
}

.FooterLinks a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.FooterLinks a:hover {
    color: white;
}

.FooterContact p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.FooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 21px;
    text-align: center;
}

.FooterBottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .ToggleController {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .MenuWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-main);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .MenuEntry {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .MenuLink {
        display: inline-block;
        padding: 15px 24px;
        font-size: 18px;
        color: var(--text-primary);
    }

    .MobileToggle:checked ~ .MenuWrapper {
        left: 0;
    }

    .MobileToggle:checked ~ .ToggleController .HamburgerIcon {
        background: transparent;
    }

    .MobileToggle:checked ~ .ToggleController .HamburgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .MobileToggle:checked ~ .ToggleController .HamburgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .LayoutContainer {
        padding: 0 34px;
    }
}

@media screen and (max-width: 890px) {
    .ContentGrid, .ContactGrid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ReversedLayout {
        grid-template-columns: 1fr;
    }

    .PrimaryHeading {
        font-size: 2.8rem;
    }

    .SectionHeading {
        font-size: 2.2rem;
    }

    .ServicesGrid, .ProgramsGrid {
        grid-template-columns: 1fr;
    }

    .ActionButtons {
        flex-direction: column;
        align-items: stretch;
    }

    .PrimaryCallAction, .SecondaryCallAction {
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .LayoutContainer {
        padding: 0 21px;
    }

    .HeroWorkspace {
        padding: 100px 0 55px;
    }

    .ServicesShowcase, .AboutWorkspace, .ProgramsShowcase, .CallToActionArea, .ContactWorkspace {
        padding: 55px 0;
    }

    .PrimaryHeading {
        font-size: 2.2rem;
    }

    .SectionHeading {
        font-size: 1.8rem;
    }

    .ServiceBlock, .FormWrapper {
        padding: 24px;
    }

    .FooterGrid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animation and Interactions */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ServiceBlock, .ProgramCard {
    animation: slideInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .MainNavigation, .FooterArea {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* ABOUT PAGE STYLES */

/* Page Hero Section */
.PageHeroSection {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--soft-blush) 0%, var(--accent-pale) 100%);
    text-align: center;
}

.HeroContentWrapper {
    max-width: 700px;
    margin: 0 auto;
}

.PageMainTitle {
    font-size: 3.2rem;
    color: var(--deep-crimson);
    margin-bottom: 21px;
}

.PageSubtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Company Background */
.CompanyBackgroundArea {
    padding: 89px 0;
    background: var(--background-main);
}

.BackgroundGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.StoryHeading {
    color: var(--deep-crimson);
    margin-bottom: 24px;
}

.StoryDescription {
    margin-bottom: 21px;
    line-height: 1.8;
}

.MilestoneList {
    margin-top: 34px;
}

.MilestoneItem {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.MilestoneIcon {
    width: 24px;
    height: 24px;
}

.IconSvg {
    width: 100%;
    height: 100%;
    filter: var(--cardinal-red);
}

.MilestoneText {
    font-weight: 600;
    color: var(--text-primary);
}

/* Philosophy Section */
.PhilosophyWorkspace {
    padding: 89px 0;
    background: var(--neutral-whisper);
}

.PhilosophyGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.PhilosophyCard {
    background: white;
    padding: 40px;
    border-radius: 13px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.PhilosophyCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.PhilosophyIconWrapper {
    width: 64px;
    height: 64px;
    background: var(--cardinal-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.PhilosophyIcon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.PhilosophyTitle {
    color: var(--deep-crimson);
    margin-bottom: 18px;
    font-size: 1.4rem;
}

/* Success Stories */
.SuccessShowcase {
    padding: 89px 0;
    background: var(--background-main);
}

.SuccessGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 34px;
}

.SuccessStory {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.SuccessStory:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.SuccessStory img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.StoryDetails {
    padding: 32px;
}

.StoryTitle {
    color: var(--deep-crimson);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.StoryNarrative {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Community Development */
.CommunityArea {
    padding: 89px 0;
    background: var(--soft-blush);
}

.CommunityGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.CommunityHeading {
    color: var(--deep-crimson);
    margin-bottom: 24px;
}

.ApproachList {
    margin-top: 34px;
}

.ApproachItem {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.ApproachIcon {
    width: 28px;
    height: 28px;
    margin-top: 5px;
    filter: invert(32%) sepia(95%) saturate(1076%) hue-rotate(336deg) brightness(91%) contrast(95%);
}

.ApproachTitle {
    color: var(--deep-crimson);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.ApproachDesc {
    color: var(--text-secondary);
    margin: 0;
}

/* Innovation Hub */
.InnovationHub {
    padding: 89px 0;
    background: var(--background-main);
}

.InnovationGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.InnovationArea {
    text-align: center;
    padding: 32px 21px;
}

.InnovationIconBox {
    width: 72px;
    height: 72px;
    background: var(--tertiary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
}

.InnovationIcon {
    width: 36px;
    height: 36px;
    filter: invert(51%) sepia(99%) saturate(1076%) hue-rotate(21deg) brightness(99%) contrast(101%);
}

.InnovationTitle {
    color: var(--deep-crimson);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Investment Area */
.InvestmentArea {
    padding: 89px 0;
    background: var(--neutral-whisper);
}

.InvestmentWrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.InvestmentHeading {
    color: var(--deep-crimson);
    margin-bottom: 24px;
}

.InvestmentDescription {
    font-size: 1.1rem;
    margin-bottom: 55px;
    color: var(--text-secondary);
}

.InvestmentFeatures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
}

.FeatureColumn {
    text-align: center;
}

.FeatureIcon {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    filter: invert(32%) sepia(95%) saturate(1076%) hue-rotate(336deg) brightness(91%) contrast(95%);
}

.FeatureTitle {
    color: var(--deep-crimson);
    margin-bottom: 13px;
    font-size: 1.1rem;
}

.FeatureDesc {
    color: var(--text-secondary);
    margin: 0;
}

/* Resources Hub */
.ResourcesHub {
    padding: 89px 0;
    background: var(--background-main);
}

.ResourcesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.ResourceCategory {
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ResourceTitle {
    color: var(--deep-crimson);
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.ResourceList {
    list-style: none;
}

.ResourceItem {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    padding: 13px;
    background: var(--neutral-whisper);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ResourceItem:hover {
    background: var(--soft-blush);
    transform: translateX(5px);
}

.ResourceIcon {
    width: 20px;
    height: 20px;
    filter: invert(32%) sepia(95%) saturate(1076%) hue-rotate(336deg) brightness(91%) contrast(95%);
}

.ResourceText {
    color: var(--text-primary);
    font-weight: 500;
}

/* THANK YOU PAGE STYLES */

/* Thank You Main Section */
.ThankYouWrapper {
    padding: 140px 0 89px;
    background: var(--background-main);
    min-height: 60vh;
}

.ThankYouContent {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.SuccessIconWrapper {
    width: 120px;
    height: 120px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 34px;
    animation: successPulse 2s ease-in-out infinite;
}

.SuccessIcon {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.ThankYouHeading {
    color: var(--success-green);
    font-size: 3.5rem;
    margin-bottom: 13px;
}

.ConfirmationSubtitle {
    color: var(--deep-crimson);
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.ConfirmationMessage {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 55px;
    line-height: 1.8;
}

/* Next Steps */
.NextStepsArea {
    background: var(--neutral-whisper);
    padding: 40px;
    border-radius: 13px;
    margin-bottom: 55px;
    text-align: left;
}

.NextStepsTitle {
    color: var(--deep-crimson);
    text-align: center;
    margin-bottom: 34px;
    font-size: 1.5rem;
}

.StepsList {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.StepItem {
    display: flex;
    gap: 21px;
    align-items: flex-start;
}

.StepNumber {
    width: 40px;
    height: 40px;
    background: var(--cardinal-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.StepTitle {
    color: var(--deep-crimson);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.StepDescription {
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Reminder */
.ContactReminder {
    background: var(--soft-blush);
    padding: 24px;
    border-radius: 13px;
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 55px;
    text-align: left;
}

.ReminderIconBox {
    width: 48px;
    height: 48px;
    background: var(--cardinal-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ReminderIcon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.ReminderTitle {
    color: var(--deep-crimson);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.ReminderDesc {
    color: var(--text-secondary);
    margin: 0;
}

/* Resource Suggestions */
.ResourceSuggestions {
    padding: 89px 0;
    background: var(--neutral-whisper);
}

.ResourceHeading {
    text-align: center;
    color: var(--deep-crimson);
    margin-bottom: 55px;
    font-size: 2.2rem;
}

.ResourceCards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.ResourceCard {
    background: white;
    padding: 34px;
    border-radius: 13px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ResourceCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ResourceIconWrapper {
    width: 64px;
    height: 64px;
    background: var(--accent-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
}

.ResourceIcon {
    width: 32px;
    height: 32px;
    filter: invert(24%) sepia(99%) saturate(1076%) hue-rotate(194deg) brightness(95%) contrast(89%);
}

/* Responsive Design for About & Thank You */
@media screen and (max-width: 890px) {
    .BackgroundGrid, .CommunityGrid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ReversedSetup {
        grid-template-columns: 1fr;
    }

    .PageMainTitle {
        font-size: 2.5rem;
    }

    .ThankYouHeading {
        font-size: 2.8rem;
    }

    .PhilosophyGrid, .InnovationGrid, .ResourcesGrid {
        grid-template-columns: 1fr;
    }

    .SuccessGrid {
        grid-template-columns: 1fr;
    }

    .StepsList {
        gap: 18px;
    }

    .ContactReminder {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .PageHeroSection {
        padding: 120px 0 55px;
    }

    .CompanyBackgroundArea, .PhilosophyWorkspace, .SuccessShowcase,
    .CommunityArea, .InnovationHub, .InvestmentArea, .ResourcesHub,
    .ThankYouWrapper, .ResourceSuggestions {
        padding: 55px 0;
    }

    .PageMainTitle {
        font-size: 2.2rem;
    }

    .ThankYouHeading {
        font-size: 2.4rem;
    }

    .PhilosophyCard, .ResourceCategory, .NextStepsArea {
        padding: 24px;
    }

    .SuccessIconWrapper {
        width: 100px;
        height: 100px;
    }

    .SuccessIcon {
        width: 50px;
        height: 50px;
    }

    .InvestmentFeatures {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}