/* EthicalLead Custom Styles - luminous.css */

/* Color Variables */
:root {
    --ocean-blue: #e63946;
    --sunset-orange: #fdeaeb;
    --forest-green: #c8252f;
    --secondary-color: #2a9d8f;
    --secondary-light: #e6f7f5;
    --tertiary-color: #f77f00;
    --tertiary-light: #fef3e6;
    --accent-color: #264653;
    --accent-light: #e8f0ef;
    --neutral-color: #6c757d;
    --neutral-light: #f8f9fa;
    --info-color: #457b9d;
    --warning-color: #e63946;
    --success-color: #2a9d8f;
    --text-color: #264653;
    --background-color: #ffffff;
}

/* Typography Settings */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.67;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.23;
    margin-bottom: 13px;
}

h1 {
    font-size: 3.17rem;
    font-weight: 700;
}

h2 {
    font-size: 2.44rem;
    color: var(--forest-green);
}

h3 {
    font-size: 1.89rem;
}

h4 {
    font-size: 1.53rem;
}

/* Container System */
.ContainerFluid {
    max-width: 1278px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Header Styles */
.MainHeader {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: 0 2px 13px rgba(38, 70, 83, 0.08);
    transition: all 0.34s cubic-bezier(0.23, 1, 0.32, 1);
}

.NavigationWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    position: relative;
}

.BrandLogo img {
    height: 42px;
    width: auto;
}

.NavToggleInput {
    display: none;
}

.NavToggleLabel {
    display: none;
}

.HamburgerIcon {
    width: 27px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: all 0.34s ease;
}

.HamburgerIcon:before,
.HamburgerIcon:after {
    content: '';
    position: absolute;
    width: 27px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.34s ease;
}

.HamburgerIcon:before {
    top: -7px;
}

.HamburgerIcon:after {
    top: 7px;
}

.NavigationContainer {
    display: flex;
    align-items: center;
    gap: 34px;
}

.NavigationItem {
    list-style: none;
}

.NavigationLink {
    color: var(--text-color);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.27s ease;
    position: relative;
}

.NavigationLink::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--ocean-blue);
    transition: width 0.27s ease;
}

.NavigationLink:hover {
    color: var(--ocean-blue);
}

.NavigationLink:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .NavToggleLabel {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .NavigationContainer {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-color);
        transition: all 0.34s ease;
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .NavigationItem {
        width: 100%;
        text-align: center;
        margin: 21px 0;
    }

    .NavigationLink {
        display: inline-block;
        padding: 13px 21px;
        font-size: 19px;
    }

    .NavToggleInput:checked ~ .NavigationContainer {
        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 */
.HeroWorkspace {
    padding: 134px 0 89px;
    background: linear-gradient(137deg, var(--sunset-orange) 0%, rgba(255, 255, 255, 0.89) 100%);
    margin-top: 68px;
}

.HeroContentGrid {
    display: grid;
    grid-template-columns: 1.23fr 1fr;
    gap: 55px;
    align-items: center;
}

.HeroTextArea h1 {
    margin-bottom: 21px;
    color: var(--forest-green);
}

.HeroTextArea p {
    font-size: 19px;
    margin-bottom: 34px;
    color: var(--text-color);
    opacity: 0.89;
}

.HeroActionButtons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.PrimaryActionButton,
.SecondaryActionButton {
    padding: 13px 27px;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 500;
    transition: all 0.27s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 5px 21px rgba(38, 70, 83, 0.13);
}

.PrimaryActionButton {
    background: var(--ocean-blue);
    color: white;
}

.PrimaryActionButton:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 27px rgba(38, 70, 83, 0.21);
}

.SecondaryActionButton {
    background: white;
    color: var(--text-color);
    border: 2px solid var(--ocean-blue);
}

.SecondaryActionButton:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-2px);
}

.HeroImageWrapper img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 13px 42px rgba(38, 70, 83, 0.13);
}

/* Services Section */
.ServicesShowcase {
    padding: 89px 0;
    background: var(--neutral-light);
}

.SectionHeaderBlock {
    text-align: center;
    margin-bottom: 55px;
}

.SectionHeaderBlock h2 {
    margin-bottom: 17px;
}

.SectionHeaderBlock p {
    font-size: 18px;
    color: var(--neutral-color);
    max-width: 612px;
    margin: 0 auto;
}

.ServicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(347px, 1fr));
    gap: 34px;
}

.ServiceCard {
    background: white;
    padding: 34px 27px;
    border-radius: 13px;
    text-align: center;
    box-shadow: 0 5px 21px rgba(38, 70, 83, 0.08);
    transition: transform 0.27s ease, box-shadow 0.27s ease;
}

.ServiceCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 42px rgba(38, 70, 83, 0.13);
}

.ServiceIconContainer {
    width: 68px;
    height: 68px;
    background: var(--sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
}

.ServiceIcon {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(0.1) sepia(0.8) saturate(6) hue-rotate(345deg);
}

.ServiceCard h3 {
    margin-bottom: 13px;
    color: var(--forest-green);
}

.ServiceCard p {
    color: var(--neutral-color);
    line-height: 1.67;
}

/* Benefits Section */
.BenefitsWorkspace {
    padding: 89px 0;
}

.BenefitsContentLayout {
    display: grid;
    grid-template-columns: 1fr 1.13fr;
    gap: 55px;
    align-items: center;
}

.BenefitsImageSection img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 13px 42px rgba(38, 70, 83, 0.13);
}

.BenefitsTextSection h2 {
    margin-bottom: 27px;
}

.BenefitsList {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.BenefitItem {
    display: flex;
    align-items: center;
    gap: 13px;
}

.BenefitIcon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(0.1) sepia(0.8) saturate(6) hue-rotate(158deg);
}

.BenefitItem span {
    font-size: 17px;
    color: var(--text-color);
}

/* Programs Section */
.ProgramsShowcase {
    padding: 89px 0;
    background: var(--accent-light);
}

.ProgramsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(347px, 1fr));
    gap: 34px;
}

.ProgramCard {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 5px 21px rgba(38, 70, 83, 0.08);
    transition: transform 0.27s ease, box-shadow 0.27s ease;
}

.ProgramCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 42px rgba(38, 70, 83, 0.13);
}

.ProgramCard img {
    width: 100%;
    height: 234px;
    object-fit: cover;
}

.ProgramContent {
    padding: 27px;
}

.ProgramContent h3 {
    margin-bottom: 13px;
    color: var(--forest-green);
}

.ProgramContent p {
    color: var(--neutral-color);
    margin-bottom: 21px;
    line-height: 1.67;
}

.ProgramActionLink {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.27s ease;
}

.ProgramActionLink:hover {
    color: var(--forest-green);
}

/* CTA Section */
.CallToActionWorkspace {
    padding: 89px 0;
    background: linear-gradient(137deg, var(--ocean-blue) 0%, var(--forest-green) 100%);
    color: white;
}

.CtaContentWrapper {
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.CtaContentWrapper h2 {
    color: white;
    margin-bottom: 21px;
}

.CtaContentWrapper p {
    font-size: 18px;
    margin-bottom: 34px;
    opacity: 0.89;
}

.CtaActionButton {
    background: white;
    color: var(--ocean-blue);
    padding: 15px 34px;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 600;
    transition: all 0.27s ease;
    box-shadow: 0 5px 21px rgba(0, 0, 0, 0.13);
}

.CtaActionButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.21);
}

/* Contact Section */
.ContactWorkspace {
    padding: 89px 0;
    background: var(--neutral-light);
}

.ContactContentLayout {
    display: grid;
    grid-template-columns: 1fr 1.34fr;
    gap: 55px;
}

.ContactInfoSection h2 {
    margin-bottom: 34px;
}

.ContactInfoItem {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 21px;
}

.ContactIcon {
    width: 21px;
    height: 21px;
    margin-top: 2px;
    filter: brightness(0) invert(0.1) sepia(0.8) saturate(6) hue-rotate(345deg);
}

.ContactForm {
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 5px 21px rgba(38, 70, 83, 0.08);
}

.FormGroup {
    margin-bottom: 21px;
}

.FormGroup label {
    display: block;
    margin-bottom: 7px;
    font-weight: 500;
    color: var(--text-color);
}

.FormGroup input,
.FormGroup select,
.FormGroup textarea {
    width: 100%;
    padding: 13px;
    border: 2px solid #e9ecef;
    border-radius: 7px;
    font-size: 16px;
    transition: border-color 0.27s ease;
}

.FormGroup input:focus,
.FormGroup select:focus,
.FormGroup textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

.SubmitButton {
    background: var(--ocean-blue);
    color: white;
    padding: 13px 34px;
    border: none;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.27s ease;
    box-shadow: 0 5px 21px rgba(38, 70, 83, 0.13);
}

.SubmitButton:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 27px rgba(38, 70, 83, 0.21);
}

/* Footer */
.MainFooter {
    background: var(--accent-color);
    color: white;
    padding: 55px 0 21px;
}

.FooterContentGrid {
    display: grid;
    grid-template-columns: 1.34fr 1fr 1fr;
    gap: 34px;
    margin-bottom: 34px;
}

.FooterLogo {
    height: 42px;
    width: auto;
    margin-bottom: 17px;
    filter: brightness(0) invert(1);
}

.FooterBrand p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.67;
}

.FooterLinksSection h4,
.FooterContactSection h4 {
    margin-bottom: 17px;
    color: white;
}

.FooterLinksList {
    list-style: none;
}

.FooterLinksList li {
    margin-bottom: 8px;
}

.FooterLinksList a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.27s ease;
}

.FooterLinksList a:hover {
    color: white;
}

.FooterContactItem {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 13px;
}

.FooterContactIcon {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    filter: brightness(0) invert(1);
}

.FooterBottomBar {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding-top: 21px;
    text-align: center;
}

.FooterBottomBar p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .ContainerFluid {
        max-width: 1170px;
    }

    .HeroContentGrid {
        gap: 42px;
    }
}

@media screen and (max-width: 890px) {
    .HeroWorkspace {
        padding: 89px 0 55px;
    }

    .HeroContentGrid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .HeroActionButtons {
        justify-content: center;
    }

    .BenefitsContentLayout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ContactContentLayout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .FooterContentGrid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    h1 {
        font-size: 2.44rem;
    }

    h2 {
        font-size: 2.13rem;
    }
}

@media screen and (max-width: 640px) {
    .ContainerFluid {
        padding: 0 17px;
    }

    .ServicesGrid,
    .ProgramsGrid {
        grid-template-columns: 1fr;
    }

    .ServiceCard,
    .ContactForm {
        padding: 27px 21px;
    }

    .HeroActionButtons {
        flex-direction: column;
    }

    .PrimaryActionButton,
    .SecondaryActionButton {
        width: 100%;
        text-align: center;
    }
}

/* Additional Styles for about.html and thankyou.php */

/* About Page Styles */
.AboutHeroSpace {
    padding: 134px 0 89px;
    background: linear-gradient(142deg, var(--sunset-orange) 0%, rgba(255, 255, 255, 0.91) 100%);
    margin-top: 68px;
}

.AboutHeroLayout {
    display: grid;
    grid-template-columns: 1.27fr 1fr;
    gap: 47px;
    align-items: center;
}

.AboutHeroText h1 {
    margin-bottom: 23px;
    color: var(--forest-green);
}

.AboutHeroText p {
    font-size: 18px;
    color: var(--text-color);
    opacity: 0.87;
    line-height: 1.71;
}

.AboutHeroImage img {
    width: 100%;
    height: auto;
    border-radius: 11px;
    box-shadow: 0 11px 38px rgba(38, 70, 83, 0.14);
}

/* Ethics Background Section */
.EthicsBackgroundArea {
    padding: 78px 0;
}

.BackgroundContentWrapper {
    display: grid;
    grid-template-columns: 1fr 1.19fr;
    gap: 51px;
    align-items: center;
}

.BackgroundImageSection img {
    width: 100%;
    height: auto;
    border-radius: 11px;
    box-shadow: 0 11px 38px rgba(38, 70, 83, 0.14);
}

.BackgroundTextSection h2 {
    margin-bottom: 24px;
}

.BackgroundTextSection p {
    margin-bottom: 19px;
    color: var(--neutral-color);
    line-height: 1.68;
}

/* Philosophy Section */
.MoralPhilosophyWorkspace {
    padding: 78px 0;
    background: var(--accent-light);
}

.PhilosophyHeader {
    text-align: center;
    margin-bottom: 52px;
}

.PhilosophyHeader h2 {
    margin-bottom: 16px;
}

.PhilosophyHeader p {
    font-size: 17px;
    color: var(--neutral-color);
    max-width: 589px;
    margin: 0 auto;
}

.PhilosophyCardsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(287px, 1fr));
    gap: 31px;
}

.PhilosophyCard {
    background: white;
    padding: 31px 24px;
    border-radius: 11px;
    text-align: center;
    box-shadow: 0 4px 19px rgba(38, 70, 83, 0.09);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.PhilosophyCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 11px 38px rgba(38, 70, 83, 0.14);
}

.PhilosophyIconBox {
    width: 62px;
    height: 62px;
    background: var(--sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 19px;
}

.PhilosophyIcon {
    width: 31px;
    height: 31px;
    filter: brightness(0) invert(0.1) sepia(0.8) saturate(6) hue-rotate(345deg);
}

.PhilosophyCard h3 {
    margin-bottom: 12px;
    color: var(--forest-green);
}

.PhilosophyCard p {
    color: var(--neutral-color);
    line-height: 1.64;
}

/* Success Stories Section */
.SuccessStoriesArea {
    padding: 78px 0;
}

.StoriesHeader {
    text-align: center;
    margin-bottom: 52px;
}

.StoriesHeader h2 {
    margin-bottom: 16px;
}

.StoriesHeader p {
    font-size: 17px;
    color: var(--neutral-color);
    max-width: 634px;
    margin: 0 auto;
}

.StoriesContentLayout {
    display: grid;
    grid-template-columns: 1fr 1.23fr;
    gap: 48px;
    align-items: center;
}

.StoriesImageBox img {
    width: 100%;
    height: auto;
    border-radius: 11px;
    box-shadow: 0 11px 38px rgba(38, 70, 83, 0.14);
}

.StoryItem {
    margin-bottom: 32px;
    padding-bottom: 26px;
    border-bottom: 1px solid #e9ecef;
}

.StoryItem:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.StoryItem h3 {
    margin-bottom: 14px;
    color: var(--forest-green);
    font-size: 1.34rem;
}

.StoryItem p {
    color: var(--neutral-color);
    line-height: 1.68;
}

/* Values Training Section */
.ValuesTrainingWorkspace {
    padding: 78px 0;
    background: var(--neutral-light);
}

.TrainingContentGrid {
    display: grid;
    grid-template-columns: 1.16fr 1fr;
    gap: 48px;
    align-items: center;
}

.TrainingTextSection h2 {
    margin-bottom: 24px;
}

.TrainingTextSection p {
    margin-bottom: 27px;
    color: var(--neutral-color);
    line-height: 1.68;
}

.TrainingFeaturesList {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.TrainingFeature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.FeatureIcon {
    width: 19px;
    height: 19px;
    filter: brightness(0) invert(0.1) sepia(0.8) saturate(6) hue-rotate(158deg);
}

.TrainingFeature span {
    font-size: 16px;
    color: var(--text-color);
}

.TrainingImageSection img {
    width: 100%;
    height: auto;
    border-radius: 11px;
    box-shadow: 0 11px 38px rgba(38, 70, 83, 0.14);
}

/* Research Section */
.EthicsResearchArea {
    padding: 78px 0;
}

.ResearchHeader {
    text-align: center;
    margin-bottom: 52px;
}

.ResearchHeader h2 {
    margin-bottom: 16px;
}

.ResearchHeader p {
    font-size: 17px;
    color: var(--neutral-color);
}

.ResearchGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(312px, 1fr));
    gap: 31px;
}

.ResearchCard {
    background: white;
    padding: 31px 24px;
    border-radius: 11px;
    text-align: center;
    box-shadow: 0 4px 19px rgba(38, 70, 83, 0.09);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.ResearchCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 11px 38px rgba(38, 70, 83, 0.14);
}

.ResearchIconContainer {
    width: 62px;
    height: 62px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 19px;
}

.ResearchIcon {
    width: 31px;
    height: 31px;
    filter: brightness(0) invert(0.1) sepia(0.8) saturate(6) hue-rotate(158deg);
}

.ResearchCard h3 {
    margin-bottom: 12px;
    color: var(--forest-green);
}

.ResearchCard p {
    color: var(--neutral-color);
    line-height: 1.64;
}

/* Integrity Development Section */
.IntegrityDevelopmentWorkspace {
    padding: 78px 0;
    background: var(--accent-light);
}

.IntegrityContentLayout {
    display: grid;
    grid-template-columns: 1fr 1.21fr;
    gap: 48px;
    align-items: center;
}

.IntegrityImageSection img {
    width: 100%;
    height: auto;
    border-radius: 11px;
    box-shadow: 0 11px 38px rgba(38, 70, 83, 0.14);
}

.IntegrityTextSection h2 {
    margin-bottom: 24px;
}

.IntegrityTextSection p {
    margin-bottom: 19px;
    color: var(--neutral-color);
    line-height: 1.68;
}

.IntegrityStats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.StatItem {
    text-align: center;
    padding: 19px 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 16px rgba(38, 70, 83, 0.08);
}

.StatNumber {
    display: block;
    font-size: 2.17rem;
    font-weight: 700;
    color: var(--ocean-blue);
    margin-bottom: 6px;
}

.StatLabel {
    font-size: 14px;
    color: var(--neutral-color);
}

/* Resources Section */
.EthicsResourcesArea {
    padding: 78px 0;
}

.ResourcesHeader {
    text-align: center;
    margin-bottom: 52px;
}

.ResourcesHeader h2 {
    margin-bottom: 16px;
}

.ResourcesHeader p {
    font-size: 17px;
    color: var(--neutral-color);
}

.ResourcesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(273px, 1fr));
    gap: 31px;
}

.ResourceCard {
    background: white;
    padding: 31px 24px;
    border-radius: 11px;
    text-align: center;
    box-shadow: 0 4px 19px rgba(38, 70, 83, 0.09);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.ResourceCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 11px 38px rgba(38, 70, 83, 0.14);
}

.ResourceIcon {
    width: 42px;
    height: 42px;
    margin: 0 auto 19px;
    filter: brightness(0) invert(0.1) sepia(0.8) saturate(6) hue-rotate(345deg);
}

.ResourceCard h3 {
    margin-bottom: 12px;
    color: var(--forest-green);
}

.ResourceCard p {
    color: var(--neutral-color);
    line-height: 1.64;
}

/* Thank You Page Styles */
.ThankYouWorkspace {
    padding: 134px 0 78px;
    margin-top: 68px;
    background: linear-gradient(145deg, var(--sunset-orange) 0%, rgba(255, 255, 255, 0.93) 100%);
}

.ThankYouContentWrapper {
    text-align: center;
    max-width: 642px;
    margin: 0 auto 67px;
}

.ThankYouIconSection {
    margin-bottom: 34px;
}

.SuccessIconContainer {
    width: 89px;
    height: 89px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: successPulse 1.7s ease-in-out infinite;
}

.SuccessIcon {
    width: 47px;
    height: 47px;
    filter: brightness(0) invert(1);
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.07); }
    100% { transform: scale(1); }
}

.ThankYouTextSection h1 {
    color: var(--forest-green);
    margin-bottom: 14px;
}

.ThankYouTextSection h2 {
    font-size: 1.73rem;
    color: var(--text-color);
    margin-bottom: 21px;
}

.ThankYouTextSection p {
    font-size: 17px;
    color: var(--neutral-color);
    line-height: 1.68;
}

/* Next Steps Section */
.NextStepsArea {
    text-align: center;
    margin-bottom: 67px;
}

.NextStepsArea h3 {
    margin-bottom: 34px;
    color: var(--forest-green);
}

.StepsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
    gap: 27px;
    max-width: 834px;
    margin: 0 auto;
}

.StepCard {
    background: white;
    padding: 27px 21px;
    border-radius: 11px;
    text-align: center;
    box-shadow: 0 4px 19px rgba(38, 70, 83, 0.09);
    transition: transform 0.26s ease;
}

.StepCard:hover {
    transform: translateY(-3px);
}

.StepNumber {
    width: 42px;
    height: 42px;
    background: var(--ocean-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin: 0 auto 16px;
}

.StepContent h4 {
    margin-bottom: 8px;
    color: var(--forest-green);
}

.StepContent p {
    color: var(--neutral-color);
    font-size: 14px;
    line-height: 1.64;
}

/* Continue Exploring Section */
.ContinueExploringArea {
    text-align: center;
}

.ContinueExploringArea h3 {
    margin-bottom: 16px;
    color: var(--forest-green);
}

.ContinueExploringArea p {
    margin-bottom: 27px;
    color: var(--neutral-color);
}

.ExploreActions {
    display: flex;
    gap: 19px;
    justify-content: center;
    flex-wrap: wrap;
}

.ExploreButton {
    padding: 12px 26px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.26s ease;
    box-shadow: 0 4px 19px rgba(38, 70, 83, 0.12);
}

.ExploreButton {
    background: var(--ocean-blue);
    color: white;
}

.ExploreButton:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
}

.ExploreButton.Secondary {
    background: white;
    color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
}

.ExploreButton.Secondary:hover {
    background: var(--ocean-blue);
    color: white;
}

/* Additional Info Section */
.AdditionalInfoWorkspace {
    padding: 67px 0;
    background: var(--neutral-light);
}

.InfoCardsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(284px, 1fr));
    gap: 27px;
}

.InfoCard {
    background: white;
    padding: 27px 21px;
    border-radius: 11px;
    text-align: center;
    box-shadow: 0 4px 19px rgba(38, 70, 83, 0.09);
}

.InfoCardIcon {
    width: 56px;
    height: 56px;
    background: var(--sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.InfoIcon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(0.1) sepia(0.8) saturate(6) hue-rotate(345deg);
}

.InfoCard h4 {
    margin-bottom: 8px;
    color: var(--forest-green);
}

.InfoCard p {
    color: var(--neutral-color);
    font-size: 14px;
    line-height: 1.64;
}

/* Responsive Design for About and Thank You pages */
@media screen and (max-width: 890px) {
    .AboutHeroLayout,
    .BackgroundContentWrapper,
    .StoriesContentLayout,
    .TrainingContentGrid,
    .IntegrityContentLayout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .PhilosophyCardsGrid,
    .ResearchGrid,
    .ResourcesGrid {
        grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
    }

    .IntegrityStats {
        grid-template-columns: repeat(auto-fit, minmax(127px, 1fr));
    }

    .AboutHeroSpace,
    .ThankYouWorkspace {
        padding: 89px 0 55px;
    }

    .StepsGrid {
        grid-template-columns: 1fr;
    }

    .ExploreActions {
        flex-direction: column;
        align-items: center;
    }

    .ExploreButton {
        width: 234px;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .PhilosophyCard,
    .ResearchCard,
    .ResourceCard,
    .StepCard,
    .InfoCard {
        padding: 24px 18px;
    }

    .StatItem {
        padding: 16px 9px;
    }

    .StatNumber {
        font-size: 1.87rem;
    }

    .SuccessIconContainer {
        width: 73px;
        height: 73px;
    }

    .SuccessIcon {
        width: 38px;
        height: 38px;
    }
}