/* CSS Custom Properties - Color System */
:root {
    --forest-depth: #588157;
    --mint-whisper: #eef3ef;
    --shadow-bark: #3e5a3d;
    --ocean-breeze: #4a90e2;
    --sky-reflection: #e8f4fd;
    --sunset-amber: #f39c12;
    --honey-glow: #fdf2e9;
    --coral-energy: #e74c3c;
    --blush-mist: #fdedea;
    --moonstone-grey: #95a5a6;
    --pearl-silver: #f8f9fa;
    --sapphire-info: #3498db;
    --golden-warning: #f1c40f;
    --emerald-success: #27ae60;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--shadow-bark);
    background-color: #ffffff;
    font-size: 16px;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 21px;
    line-height: 1.3;
}

h1 {
    font-size: 3.2rem;
    color: var(--shadow-bark);
}

h2 {
    font-size: 2.6rem;
    color: var(--shadow-bark);
}

h3 {
    font-size: 2.1rem;
    color: var(--shadow-bark);
}

h4 {
    font-size: 1.6rem;
    color: var(--shadow-bark);
}

p {
    margin-bottom: 18px;
    color: var(--shadow-bark);
    font-size: 1.1rem;
}

/* Container System */
.ContainerFluid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header and Navigation Styles */
.MainMenuWrapper {
    background-color: #ffffff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.NavigationBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.BrandIdentity img {
    height: 42px;
    width: auto;
}

.NavigationToggle {
    display: none;
}

.ToggleLabel {
    display: none;
}

.HamburgerLines {
    width: 30px;
    height: 3px;
    background: var(--shadow-bark);
    position: relative;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.HamburgerLines:before,
.HamburgerLines:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--shadow-bark);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.HamburgerLines:before {
    top: -9px;
}

.HamburgerLines:after {
    top: 9px;
}

.NavigationWrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.NavigationList {
    display: flex;
    gap: 34px;
    list-style: none;
    margin: 0;
}

.NavigationItem {
    list-style: none;
}

.NavigationLink {
    color: var(--shadow-bark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.28s ease;
    position: relative;
}

.NavigationLink:hover {
    color: var(--forest-depth);
}

.NavigationLink::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--forest-depth);
    transition: width 0.28s ease;
}

.NavigationLink:hover::after {
    width: 100%;
}

/* Hero Section Styles */
.HeroInnovationArea {
    padding: 89px 0 76px;
    background: linear-gradient(135deg, var(--mint-whisper) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.HeroContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.HeroTextColumn {
    padding-right: 28px;
}

.HeroMainTitle {
    font-size: 3.8rem;
    margin-bottom: 28px;
    color: var(--shadow-bark);
    line-height: 1.2;
}

.HeroDescription {
    font-size: 1.25rem;
    margin-bottom: 41px;
    color: var(--shadow-bark);
    opacity: 0.9;
}

.HeroActionButtons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.PrimaryActionButton {
    background-color: var(--forest-depth);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(88, 129, 87, 0.3);
}

.PrimaryActionButton:hover {
    background-color: var(--shadow-bark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 129, 87, 0.4);
}

.SecondaryActionButton {
    border: 2px solid var(--forest-depth);
    color: var(--forest-depth);
    padding: 14px 30px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.SecondaryActionButton:hover {
    background-color: var(--forest-depth);
    color: #ffffff;
}

.HeroImageColumn {
    text-align: center;
}

.HeroMainImage {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 17px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Creativity Lab Section */
.CreativityLabSection {
    padding: 91px 0;
    background-color: #ffffff;
}

.SectionHeaderArea {
    text-align: center;
    margin-bottom: 67px;
}

.SectionMainHeading {
    font-size: 3.1rem;
    margin-bottom: 21px;
    color: var(--shadow-bark);
}

.SectionSubtext {
    font-size: 1.3rem;
    color: var(--shadow-bark);
    opacity: 0.8;
    max-width: 640px;
    margin: 0 auto;
}

.CreativityGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 38px;
}

.CreativityCard {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.CreativityCard:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.CardImageWrapper {
    height: 240px;
    overflow: hidden;
}

.CardFeatureImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.38s ease;
}

.CreativityCard:hover .CardFeatureImage {
    transform: scale(1.08);
}

.CardContentArea {
    padding: 32px 28px;
}

.CardTitle {
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: var(--shadow-bark);
}

.CardDescription {
    color: var(--shadow-bark);
    opacity: 0.85;
    line-height: 1.65;
}

/* Idea Generator Section */
.IdeaGeneratorZone {
    padding: 83px 0;
    background: linear-gradient(45deg, var(--mint-whisper) 0%, #ffffff 100%);
}

.GeneratorContentLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.GeneratorTextPanel {
    padding-right: 24px;
}

.GeneratorHeading {
    font-size: 2.9rem;
    margin-bottom: 26px;
    color: var(--shadow-bark);
}

.GeneratorDescription {
    font-size: 1.2rem;
    margin-bottom: 42px;
    color: var(--shadow-bark);
    opacity: 0.9;
}

.GeneratorFeatures {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.FeaturePoint {
    padding: 23px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--forest-depth);
}

.FeatureTitle {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--shadow-bark);
}

.FeatureText {
    color: var(--shadow-bark);
    opacity: 0.8;
    margin: 0;
}

.GeneratorImagePanel {
    text-align: center;
}

.GeneratorMainImage {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 19px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

/* Workshop Section */
.WorkshopInnovationArea {
    padding: 87px 0;
    background-color: #ffffff;
}

.WorkshopHeaderBlock {
    text-align: center;
    margin-bottom: 73px;
}

.WorkshopMainTitle {
    font-size: 3.0rem;
    margin-bottom: 24px;
    color: var(--shadow-bark);
}

.WorkshopIntroText {
    font-size: 1.25rem;
    color: var(--shadow-bark);
    opacity: 0.8;
    max-width: 680px;
    margin: 0 auto;
}

.WorkshopOfferGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.WorkshopPackage {
    background: #ffffff;
    padding: 38px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.32s ease;
    border-top: 5px solid var(--forest-depth);
}

.WorkshopPackage:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.PackageTitle {
    font-size: 1.9rem;
    margin-bottom: 21px;
    color: var(--shadow-bark);
}

.PackageDescription {
    margin-bottom: 28px;
    color: var(--shadow-bark);
    opacity: 0.85;
}

.PackageBenefits {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.BenefitItem {
    padding: 12px 18px;
    background: var(--mint-whisper);
    border-radius: 8px;
    color: var(--shadow-bark);
    font-weight: 500;
    border-left: 3px solid var(--forest-depth);
}

/* CTA Section */
.CallToActionCreative {
    padding: 76px 0;
    background: linear-gradient(135deg, var(--forest-depth) 0%, var(--shadow-bark) 100%);
    text-align: center;
}

.CtaContentWrapper {
    max-width: 780px;
    margin: 0 auto;
}

.CtaMainHeading {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 26px;
}

.CtaDescription {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 38px;
}

.CtaPrimaryButton {
    background-color: #ffffff;
    color: var(--forest-depth);
    padding: 18px 42px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.32s ease;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.CtaPrimaryButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.ContactFormSection {
    padding: 89px 0;
    background: var(--mint-whisper);
}

.ContactHeaderArea {
    text-align: center;
    margin-bottom: 67px;
}

.ContactMainTitle {
    font-size: 3.1rem;
    margin-bottom: 21px;
    color: var(--shadow-bark);
}

.ContactSubtitle {
    font-size: 1.25rem;
    color: var(--shadow-bark);
    opacity: 0.8;
}

.ContactContentGrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 58px;
    align-items: start;
}

.ContactFormWrapper {
    background: #ffffff;
    padding: 42px 38px;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.FormFieldGroup {
    margin-bottom: 26px;
}

.FieldLabel {
    display: block;
    margin-bottom: 9px;
    color: var(--shadow-bark);
    font-weight: 600;
    font-size: 1.05rem;
}

.FormInputField,
.FormSelectField,
.FormTextareaField {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.28s ease;
    font-family: inherit;
}

.FormInputField:focus,
.FormSelectField:focus,
.FormTextareaField:focus {
    outline: none;
    border-color: var(--forest-depth);
    box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.1);
}

.FormTextareaField {
    resize: vertical;
    min-height: 120px;
}

.FormSubmitButton {
    width: 100%;
    background-color: var(--forest-depth);
    color: #ffffff;
    padding: 17px 24px;
    border: none;
    border-radius: 11px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.32s ease;
    font-family: inherit;
}

.FormSubmitButton:hover {
    background-color: var(--shadow-bark);
    transform: translateY(-2px);
}

.ContactInfoColumn {
    display: flex;
    flex-direction: column;
}

.ContactInfoCard {
    background: #ffffff;
    padding: 34px 28px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.InfoCardTitle {
    font-size: 1.8rem;
    margin-bottom: 28px;
    color: var(--shadow-bark);
}

.InfoItem {
    display: flex;
    flex-direction: column;
    margin-bottom: 21px;
}

.InfoLabel {
    font-weight: 600;
    color: var(--shadow-bark);
    margin-bottom: 7px;
}

.InfoValue {
    color: var(--shadow-bark);
    opacity: 0.8;
}

/* Footer Styles */
.MainFooterArea {
    background-color: var(--shadow-bark);
    color: #ffffff;
    padding: 67px 0 28px;
}

.FooterContentGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 42px;
}

.FooterLogo img {
    height: 38px;
    width: auto;
    margin-bottom: 21px;
}

.FooterDescription {
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.6;
}

.FooterColumnTitle {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #ffffff;
}

.FooterLinksList {
    list-style: none;
}

.FooterLinkItem {
    margin-bottom: 14px;
}

.FooterLink {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.28s ease;
}

.FooterLink:hover {
    opacity: 1;
}

.FooterBottomBar {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.CopyrightText {
    color: #ffffff;
    opacity: 0.7;
    margin: 0;
}

/* Mobile Navigation Styles */
@media screen and (max-width: 890px) {
    .ToggleLabel {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .NavigationWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
        z-index: 1;
    }

    .NavigationList {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 24px;
    }

    .NavigationItem {
        width: 100%;
        text-align: center;
        margin: 18px 0;
    }

    .NavigationLink {
        display: inline-block;
        padding: 14px 28px;
        font-size: 1.25rem;
        color: var(--shadow-bark);
    }

    .NavigationToggle:checked ~ .NavigationWrapper {
        left: 0;
    }

    .NavigationToggle:checked ~ .ToggleLabel .HamburgerLines {
        background: transparent;
    }

    .NavigationToggle:checked ~ .ToggleLabel .HamburgerLines:before {
        transform: rotate(45deg);
        top: 0;
    }

    .NavigationToggle:checked ~ .ToggleLabel .HamburgerLines:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .ContainerFluid {
        max-width: 1140px;
    }

    .HeroMainTitle {
        font-size: 3.4rem;
    }
}

@media screen and (max-width: 990px) {
    .ContainerFluid {
        padding: 0 21px;
    }

    .HeroContentGrid,
    .GeneratorContentLayout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .HeroTextColumn {
        padding-right: 0;
        text-align: center;
    }

    .GeneratorTextPanel {
        padding-right: 0;
    }

    .ContactContentGrid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .FooterContentGrid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .HeroMainTitle {
        font-size: 2.8rem;
    }

    .SectionMainHeading,
    .WorkshopMainTitle,
    .ContactMainTitle {
        font-size: 2.4rem;
    }

    .CtaMainHeading {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 640px) {
    .ContainerFluid {
        padding: 0 18px;
    }

    .HeroInnovationArea {
        padding: 58px 0 48px;
    }

    .CreativityLabSection,
    .IdeaGeneratorZone,
    .WorkshopInnovationArea,
    .ContactFormSection {
        padding: 58px 0;
    }

    .CallToActionCreative {
        padding: 48px 0;
    }

    .MainFooterArea {
        padding: 48px 0 21px;
    }

    .HeroMainTitle {
        font-size: 2.2rem;
    }

    .SectionMainHeading,
    .WorkshopMainTitle,
    .ContactMainTitle,
    .CtaMainHeading {
        font-size: 2.0rem;
    }

    .GeneratorHeading {
        font-size: 2.2rem;
    }

    .HeroActionButtons {
        flex-direction: column;
        align-items: center;
    }

    .PrimaryActionButton,
    .SecondaryActionButton {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }

    .CreativityGrid,
    .WorkshopOfferGrid {
        grid-template-columns: 1fr;
    }

    .ContactFormWrapper {
        padding: 28px 24px;
    }
}

/* About Page Specific Styles */

/* Innovation Mission Section */
.AboutHeroMission {
    padding: 83px 0 71px;
    background: linear-gradient(125deg, var(--mint-whisper) 0%, #ffffff 100%);
}

.MissionContentLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 62px;
    align-items: center;
}

.MissionTextArea {
    padding-right: 29px;
}

.MissionMainTitle {
    font-size: 3.6rem;
    margin-bottom: 31px;
    color: var(--shadow-bark);
    line-height: 1.25;
}

.MissionDescription {
    font-size: 1.22rem;
    margin-bottom: 47px;
    color: var(--shadow-bark);
    opacity: 0.88;
    line-height: 1.68;
}

.MissionStats {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
}

.StatItem {
    text-align: center;
    padding: 23px 19px;
    background: #ffffff;
    border-radius: 13px;
    box-shadow: 0 7px 28px rgba(0, 0, 0, 0.07);
    min-width: 140px;
}

.StatNumber {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--forest-depth);
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
}

.StatLabel {
    font-size: 0.95rem;
    color: var(--shadow-bark);
    opacity: 0.82;
    font-weight: 500;
}

.MissionImageArea {
    text-align: center;
}

.MissionFeaturedImage {
    width: 100%;
    max-width: 510px;
    height: auto;
    border-radius: 19px;
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.11);
}

/* Expert Team Section */
.ExpertTeamShowcase {
    padding: 87px 0;
    background-color: #ffffff;
}

.ExpertHeaderBlock {
    text-align: center;
    margin-bottom: 69px;
}

.ExpertSectionTitle {
    font-size: 3.1rem;
    margin-bottom: 22px;
    color: var(--shadow-bark);
}

.ExpertIntroduction {
    font-size: 1.28rem;
    color: var(--shadow-bark);
    opacity: 0.81;
    max-width: 620px;
    margin: 0 auto;
}

.ExpertProfileGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 41px;
}

.ExpertCard {
    background: #ffffff;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 9px 34px rgba(0, 0, 0, 0.09);
    transition: all 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.ExpertCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.14);
}

.ExpertImageContainer {
    height: 280px;
    overflow: hidden;
}

.ExpertPhoto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.41s ease;
}

.ExpertCard:hover .ExpertPhoto {
    transform: scale(1.06);
}

.ExpertDetails {
    padding: 34px 29px;
}

.ExpertName {
    font-size: 1.85rem;
    margin-bottom: 11px;
    color: var(--shadow-bark);
}

.ExpertRole {
    display: block;
    color: var(--forest-depth);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 19px;
}

.ExpertBio {
    color: var(--shadow-bark);
    opacity: 0.84;
    line-height: 1.67;
    margin: 0;
}

/* Methodology Section */
.MethodologyWorkspace {
    padding: 81px 0;
    background: linear-gradient(55deg, var(--mint-whisper) 0%, #ffffff 100%);
}

.MethodologyContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.MethodologyImageSection {
    text-align: center;
}

.MethodologyMainImage {
    width: 100%;
    max-width: 490px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 13px 39px rgba(0, 0, 0, 0.1);
}

.MethodologyTextSection {
    padding-left: 27px;
}

.MethodologyHeading {
    font-size: 2.87rem;
    margin-bottom: 28px;
    color: var(--shadow-bark);
}

.MethodologyOverview {
    font-size: 1.19rem;
    margin-bottom: 43px;
    color: var(--shadow-bark);
    opacity: 0.89;
}

.MethodologyList {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.MethodItem {
    padding: 24px 26px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 23px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--forest-depth);
    transition: all 0.29s ease;
}

.MethodItem:hover {
    transform: translateX(7px);
    box-shadow: 0 11px 35px rgba(0, 0, 0, 0.1);
}

.MethodTitle {
    font-size: 1.42rem;
    margin-bottom: 13px;
    color: var(--shadow-bark);
}

.MethodDescription {
    color: var(--shadow-bark);
    opacity: 0.83;
    margin: 0;
    line-height: 1.61;
}

/* Breakthrough Case Studies */
.BreakthroughCaseStudies {
    padding: 89px 0;
    background-color: #ffffff;
}

.BreakthroughHeaderArea {
    text-align: center;
    margin-bottom: 71px;
}

.BreakthroughTitle {
    font-size: 3.05rem;
    margin-bottom: 25px;
    color: var(--shadow-bark);
}

.BreakthroughSubtext {
    font-size: 1.26rem;
    color: var(--shadow-bark);
    opacity: 0.79;
    max-width: 690px;
    margin: 0 auto;
}

.BreakthroughGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 39px;
}

.BreakthroughCase {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 31px rgba(0, 0, 0, 0.08);
    transition: all 0.33s cubic-bezier(0.4, 0, 0.2, 1);
}

.BreakthroughCase:hover {
    transform: translateY(-8px);
    box-shadow: 0 17px 47px rgba(0, 0, 0, 0.15);
}

.CaseImageWrapper {
    height: 220px;
    overflow: hidden;
}

.CaseImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.37s ease;
}

.BreakthroughCase:hover .CaseImage {
    transform: scale(1.07);
}

.CaseContent {
    padding: 33px 30px;
}

.CaseTitle {
    font-size: 1.76rem;
    margin-bottom: 12px;
    color: var(--shadow-bark);
}

.CaseResult {
    color: var(--forest-depth);
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: 17px;
}

.CaseDescription {
    color: var(--shadow-bark);
    opacity: 0.86;
    line-height: 1.64;
    margin: 0;
}

/* Innovation Journey Timeline */
.JourneyTimelinePath {
    padding: 85px 0;
    background: linear-gradient(135deg, var(--mint-whisper) 0%, #ffffff 100%);
}

.JourneyHeaderSection {
    text-align: center;
    margin-bottom: 67px;
}

.JourneyMainTitle {
    font-size: 3.12rem;
    margin-bottom: 23px;
    color: var(--shadow-bark);
}

.JourneyDescription {
    font-size: 1.24rem;
    color: var(--shadow-bark);
    opacity: 0.8;
    max-width: 660px;
    margin: 0 auto;
}

.TimelineContainer {
    display: flex;
    flex-direction: column;
    gap: 47px;
}

.TimelineItem {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 42px;
    align-items: center;
    position: relative;
}

.TimelineItem:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 100px;
    top: 200px;
    width: 3px;
    height: 47px;
    background: var(--forest-depth);
    opacity: 0.4;
}

.TimelineImageBox {
    text-align: center;
}

.TimelineImage {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    border: 4px solid #ffffff;
}

.TimelineContent {
    background: #ffffff;
    padding: 31px 28px;
    border-radius: 15px;
    box-shadow: 0 7px 26px rgba(0, 0, 0, 0.08);
    position: relative;
}

.TimelineContent::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #ffffff;
}

.TimelineYear {
    display: inline-block;
    background: var(--forest-depth);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.TimelineTitle {
    font-size: 1.54rem;
    margin-bottom: 14px;
    color: var(--shadow-bark);
}

.TimelineText {
    color: var(--shadow-bark);
    opacity: 0.85;
    line-height: 1.62;
    margin: 0;
}

/* Thank You Page Specific Styles */

/* Thank You Hero Section */
.ThankYouHeroArea {
    padding: 94px 0 78px;
    background: linear-gradient(135deg, var(--mint-whisper) 0%, #ffffff 100%);
    text-align: center;
}

.ThankYouContentCenter {
    max-width: 720px;
    margin: 0 auto;
}

.ThankYouIconWrapper {
    margin-bottom: 36px;
}

.SuccessCheckmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 89px;
    height: 89px;
    background: var(--forest-depth);
    color: #ffffff;
    border-radius: 50%;
    font-size: 2.8rem;
    font-weight: 700;
    box-shadow: 0 12px 38px rgba(88, 129, 87, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.ThankYouMainTitle {
    font-size: 3.4rem;
    margin-bottom: 29px;
    color: var(--shadow-bark);
    line-height: 1.28;
}

.ThankYouDescription {
    font-size: 1.27rem;
    margin-bottom: 43px;
    color: var(--shadow-bark);
    opacity: 0.87;
    line-height: 1.64;
}

.ThankYouActions {
    display: flex;
    gap: 23px;
    justify-content: center;
    flex-wrap: wrap;
}

.BackToHomeButton {
    background-color: var(--forest-depth);
    color: #ffffff;
    padding: 17px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.12rem;
    transition: all 0.31s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 18px rgba(88, 129, 87, 0.3);
}

.BackToHomeButton:hover {
    background-color: var(--shadow-bark);
    transform: translateY(-3px);
    box-shadow: 0 9px 27px rgba(88, 129, 87, 0.4);
}

.LearnMoreButton {
    border: 2px solid var(--forest-depth);
    color: var(--forest-depth);
    padding: 15px 33px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.12rem;
    transition: all 0.31s cubic-bezier(0.4, 0, 0.2, 1);
}

.LearnMoreButton:hover {
    background-color: var(--forest-depth);
    color: #ffffff;
}

/* Next Steps Section */
.NextStepsGuidance {
    padding: 84px 0;
    background-color: #ffffff;
}

.NextStepsHeader {
    text-align: center;
    margin-bottom: 64px;
}

.NextStepsTitle {
    font-size: 2.94rem;
    margin-bottom: 21px;
    color: var(--shadow-bark);
}

.NextStepsSubtitle {
    font-size: 1.21rem;
    color: var(--shadow-bark);
    opacity: 0.82;
}

.StepsTimeline {
    display: flex;
    flex-direction: column;
    gap: 37px;
    max-width: 780px;
    margin: 0 auto;
}

.StepItem {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: #ffffff;
    padding: 31px 29px;
    border-radius: 16px;
    box-shadow: 0 8px 29px rgba(0, 0, 0, 0.07);
    transition: all 0.28s ease;
}

.StepItem:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 43px rgba(0, 0, 0, 0.12);
}

.StepNumber {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    background: var(--forest-depth);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.34rem;
    font-family: 'Oswald', sans-serif;
}

.StepContent {
    flex: 1;
}

.StepTitle {
    font-size: 1.58rem;
    margin-bottom: 13px;
    color: var(--shadow-bark);
}

.StepDescription {
    color: var(--shadow-bark);
    opacity: 0.84;
    line-height: 1.63;
    margin-bottom: 11px;
}

.StepTiming {
    color: var(--forest-depth);
    font-weight: 600;
    font-size: 0.97rem;
}

/* Waiting Resources Section */
.WaitingResourcesArea {
    padding: 86px 0;
    background: linear-gradient(45deg, var(--mint-whisper) 0%, #ffffff 100%);
}

.ResourcesHeaderBlock {
    text-align: center;
    margin-bottom: 66px;
}

.ResourcesTitle {
    font-size: 2.91rem;
    margin-bottom: 22px;
    color: var(--shadow-bark);
}

.ResourcesDescription {
    font-size: 1.23rem;
    color: var(--shadow-bark);
    opacity: 0.81;
    max-width: 640px;
    margin: 0 auto;
}

.ResourcesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.ResourceCard {
    background: #ffffff;
    padding: 36px 31px;
    border-radius: 17px;
    text-align: center;
    box-shadow: 0 9px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.ResourceCard:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}

.ResourceIconArea {
    margin-bottom: 24px;
}

.ResourceIcon {
    font-size: 3.2rem;
    display: inline-block;
    padding: 19px;
    background: var(--mint-whisper);
    border-radius: 50%;
}

.ResourceTitle {
    font-size: 1.67rem;
    margin-bottom: 17px;
    color: var(--shadow-bark);
}

.ResourceText {
    color: var(--shadow-bark);
    opacity: 0.85;
    line-height: 1.65;
    margin: 0;
}

/* Contact Reminder Section */
.ContactReminderSection {
    padding: 73px 0;
    background-color: var(--shadow-bark);
    text-align: center;
}

.ContactReminderContent {
    max-width: 680px;
    margin: 0 auto;
}

.ContactReminderTitle {
    font-size: 2.76rem;
    margin-bottom: 24px;
    color: #ffffff;
}

.ContactReminderText {
    font-size: 1.18rem;
    color: #ffffff;
    opacity: 0.88;
    margin-bottom: 39px;
}

.DirectContactInfo {
    display: flex;
    flex-direction: column;
    gap: 21px;
    align-items: center;
}

.ContactMethod {
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: rgba(255, 255, 255, 0.09);
    padding: 19px 28px;
    border-radius: 11px;
    min-width: 280px;
}

.ContactLabel {
    color: #ffffff;
    font-weight: 600;
    opacity: 0.9;
}

.ContactValue {
    color: #ffffff;
    font-size: 1.14rem;
}

/* Responsive Design for About and Thank You Pages */
@media screen and (max-width: 990px) {
    .MissionContentLayout,
    .MethodologyContentGrid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .MissionTextArea,
    .MethodologyTextSection {
        padding-right: 0;
        padding-left: 0;
        text-align: center;
    }

    .MissionStats {
        justify-content: center;
    }

    .TimelineItem {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .TimelineItem:not(:last-child)::after {
        display: none;
    }

    .TimelineContent::before {
        display: none;
    }

    .ThankYouActions {
        flex-direction: column;
        align-items: center;
    }

    .BackToHomeButton,
    .LearnMoreButton {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .DirectContactInfo {
        align-items: stretch;
    }

    .ContactMethod {
        min-width: auto;
    }
}

@media screen and (max-width: 640px) {
    .MissionMainTitle {
        font-size: 2.6rem;
    }

    .ExpertSectionTitle,
    .BreakthroughTitle,
    .JourneyMainTitle,
    .NextStepsTitle,
    .ResourcesTitle,
    .ContactReminderTitle {
        font-size: 2.2rem;
    }

    .ThankYouMainTitle {
        font-size: 2.4rem;
    }

    .MethodologyHeading {
        font-size: 2.3rem;
    }

    .ExpertProfileGrid,
    .BreakthroughGrid,
    .ResourcesGrid {
        grid-template-columns: 1fr;
    }

    .MissionStats {
        flex-direction: column;
        align-items: center;
    }

    .StatItem {
        width: 100%;
        max-width: 200px;
    }

    .StepItem {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .AboutHeroMission,
    .ExpertTeamShowcase,
    .MethodologyWorkspace,
    .BreakthroughCaseStudies,
    .JourneyTimelinePath {
        padding: 58px 0;
    }

    .ThankYouHeroArea,
    .NextStepsGuidance,
    .WaitingResourcesArea {
        padding: 58px 0;
    }

    .ContactReminderSection {
        padding: 48px 0;
    }
}