/* Custom Color Variables */
:root {
    --ocean-depth: #007a92;
    --crystal-sky: #00b4d8;
    --morning-mist: #e6f7fc;
    --charcoal-text: #2c3e50;
    --pearl-white: #ffffff;
    --shadow-grey: #f8f9fa;
    --success-green: #27ae60;
    --warning-amber: #f39c12;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', Arial, sans-serif;
    line-height: 1.7;
    font-size: 16px;
    color: var(--charcoal-text);
    background-color: var(--pearl-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 17px;
}

h1 {
    font-size: 2.8rem;
    color: var(--ocean-depth);
}

h2 {
    font-size: 2.2rem;
    color: var(--ocean-depth);
}

h3 {
    font-size: 1.6rem;
    color: var(--ocean-depth);
}

/* Layout Containers */
.ContentBoundary {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 23px;
}

/* Navigation Styles */
.MainNavigation {
    background: var(--pearl-white);
    border-bottom: 2px solid var(--morning-mist);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.NavigationFrame {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.BrandIdentity img {
    height: 47px;
    width: auto;
}

.MenuToggleControl {
    display: none;
}

.MobileMenuTrigger {
    display: none;
}

.BurgerAnimation {
    width: 32px;
    height: 3px;
    background: var(--ocean-depth);
    position: relative;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.BurgerAnimation:before,
.BurgerAnimation:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    background: var(--ocean-depth);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.BurgerAnimation:before {
    top: -9px;
}

.BurgerAnimation:after {
    top: 9px;
}

.NavigationContainer {
    display: flex;
    align-items: center;
    gap: 21px;
}

.MenuCollection {
    display: flex;
    gap: 34px;
    list-style: none;
}

.NavigationElement {
    list-style: none;
}

.MenuLink {
    color: var(--ocean-depth);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.28s ease;
    position: relative;
}

.MenuLink:hover {
    color: var(--crystal-sky);
}

.MenuLink::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--crystal-sky);
    transition: width 0.28s ease;
}

.MenuLink:hover::after {
    width: 100%;
}

/* Hero Section */
.ImpactHeroCanvas {
    background: linear-gradient(135deg, var(--morning-mist) 0%, var(--pearl-white) 100%);
    padding: 89px 0 76px;
    border-bottom: 3px solid var(--morning-mist);
}

.HeroContentGrid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}

.ImpactStatement {
    font-size: 3.4rem;
    margin-bottom: 23px;
    line-height: 1.2;
}

.HeroDescription {
    font-size: 19px;
    color: var(--charcoal-text);
    margin-bottom: 34px;
    line-height: 1.6;
}

.HeroActionZone {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.PrimaryCallToAction,
.SecondaryAction {
    padding: 16px 28px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.31s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.PrimaryCallToAction {
    background: var(--crystal-sky);
    color: var(--pearl-white);
    border: 2px solid var(--crystal-sky);
}

.PrimaryCallToAction:hover {
    background: var(--ocean-depth);
    border-color: var(--ocean-depth);
    transform: translateY(-2px);
}

.SecondaryAction {
    background: transparent;
    color: var(--ocean-depth);
    border: 2px solid var(--ocean-depth);
}

.SecondaryAction:hover {
    background: var(--ocean-depth);
    color: var(--pearl-white);
    transform: translateY(-2px);
}

.HeroVisualColumn img {
    width: 100%;
    height: auto;
    border-radius: 11px;
    box-shadow: 0 13px 34px rgba(0, 122, 146, 0.15);
}

/* Section Styles */
.SustainabilityCompass,
.GlobalImpactTracker,
.CourseIntensityMeter,
.PlanetProfitBalance,
.TestimonialForest,
.CarbonFootprintCalculator {
    padding: 67px 0;
}

.SectionTitle {
    text-align: center;
    margin-bottom: 47px;
}

.SectionSubtitle {
    text-align: center;
    font-size: 18px;
    color: var(--charcoal-text);
    margin-bottom: 43px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Compass Grid */
.CompassGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.CompassDirection {
    background: var(--pearl-white);
    border: 2px solid var(--morning-mist);
    border-radius: 11px;
    padding: 28px;
    text-align: center;
    transition: all 0.29s ease;
}

.CompassDirection:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 43px rgba(0, 122, 146, 0.12);
    border-color: var(--crystal-sky);
}

.CompassDirection img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 21px;
}

.DirectionTitle {
    margin-bottom: 13px;
    color: var(--ocean-depth);
}

.DirectionText {
    color: var(--charcoal-text);
    line-height: 1.6;
}

/* Tracker Metrics */
.TrackerMetrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.MetricCard {
    background: var(--shadow-grey);
    border: 2px solid var(--morning-mist);
    border-radius: 9px;
    padding: 31px 21px;
    text-align: center;
    transition: all 0.27s ease;
}

.MetricCard:hover {
    background: var(--morning-mist);
    transform: scale(1.03);
}

.MetricNumber {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--crystal-sky);
    margin-bottom: 8px;
}

.MetricLabel {
    font-size: 16px;
    color: var(--charcoal-text);
    font-weight: 500;
}

/* Intensity Levels */
.IntensityLevels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.IntensityLevel {
    background: var(--pearl-white);
    border: 2px solid var(--morning-mist);
    border-radius: 11px;
    padding: 34px 26px;
    text-align: center;
    position: relative;
    transition: all 0.31s ease;
}

.IntensityLevel.Featured {
    border-color: var(--crystal-sky);
    transform: scale(1.05);
}

.IntensityLevel.Featured::before {
    content: 'Más Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--crystal-sky);
    color: var(--pearl-white);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.IntensityLevel:hover {
    transform: translateY(-5px);
    box-shadow: 0 19px 47px rgba(0, 122, 146, 0.15);
}

.LevelName {
    margin-bottom: 17px;
}

.PriceTag {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--crystal-sky);
    margin-bottom: 23px;
}

.LevelFeatures {
    list-style: none;
    margin-bottom: 26px;
}

.LevelFeatures li {
    padding: 8px 0;
    color: var(--charcoal-text);
}

.LevelFeatures li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: bold;
    margin-right: 8px;
}

.LevelAction {
    display: inline-block;
    background: var(--crystal-sky);
    color: var(--pearl-white);
    padding: 13px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.28s ease;
}

.LevelAction:hover {
    background: var(--ocean-depth);
    transform: translateY(-2px);
}

/* Balance Section */
.BalanceGrid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 47px;
    align-items: center;
}

.BalanceStats {
    display: flex;
    gap: 34px;
    margin-top: 28px;
}

.StatItem {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.StatValue {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--crystal-sky);
}

.StatDesc {
    font-size: 14px;
    color: var(--charcoal-text);
    text-align: center;
}

.BalanceVisual img {
    width: 100%;
    height: auto;
    border-radius: 11px;
}

/* Testimonials */
.TestimonialTrees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 31px;
}

.TestimonialBranch {
    background: var(--shadow-grey);
    border: 2px solid var(--morning-mist);
    border-radius: 11px;
    padding: 28px;
    position: relative;
}

.TestimonialBranch::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 23px;
    font-size: 4rem;
    color: var(--crystal-sky);
    line-height: 1;
}

.TestimonialQuote {
    font-style: italic;
    margin-bottom: 18px;
    color: var(--charcoal-text);
    line-height: 1.6;
}

.TestimonialAuthor {
    font-weight: 600;
    color: var(--ocean-depth);
}

/* Calculator */
.CalculatorInterface {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 43px;
    background: var(--shadow-grey);
    border: 2px solid var(--morning-mist);
    border-radius: 11px;
    padding: 34px;
}

.InputGroup {
    margin-bottom: 21px;
}

.InputLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ocean-depth);
}

.CalculatorInput,
.CalculatorSelect {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--morning-mist);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.25s ease;
}

.CalculatorInput:focus,
.CalculatorSelect:focus {
    outline: none;
    border-color: var(--crystal-sky);
}

.CalculateButton {
    background: var(--crystal-sky);
    color: var(--pearl-white);
    border: none;
    padding: 15px 28px;
    border-radius: 7px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.28s ease;
}

.CalculateButton:hover {
    background: var(--ocean-depth);
    transform: translateY(-2px);
}

.ResultsTitle {
    margin-bottom: 23px;
    color: var(--ocean-depth);
}

.ImpactMetric {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.ImpactValue {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--crystal-sky);
}

.ImpactUnit {
    font-size: 14px;
    color: var(--charcoal-text);
}

/* Contact Form */
.ContactFormCanvas {
    background: var(--shadow-grey);
    padding: 78px 0;
    border-top: 3px solid var(--morning-mist);
}

.ContactFormStructure {
    background: var(--pearl-white);
    border: 2px solid var(--morning-mist);
    border-radius: 13px;
    padding: 43px;
    max-width: 890px;
    margin: 0 auto;
}

.FormLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    margin-bottom: 28px;
}

.InputContainer {
    margin-bottom: 23px;
}

.TextareaContainer {
    grid-column: 1 / -1;
}

.FormLabel {
    display: block;
    margin-bottom: 9px;
    font-weight: 600;
    color: var(--ocean-depth);
    font-size: 15px;
}

.FormInput,
.FormSelect,
.FormTextarea {
    width: 100%;
    padding: 14px 17px;
    border: 2px solid var(--morning-mist);
    border-radius: 7px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.26s ease;
}

.FormInput:focus,
.FormSelect:focus,
.FormTextarea:focus {
    outline: none;
    border-color: var(--crystal-sky);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.FormTextarea {
    resize: vertical;
    min-height: 140px;
}

.FormActions {
    text-align: center;
}

.SubmitButton {
    background: var(--crystal-sky);
    color: var(--pearl-white);
    border: none;
    padding: 18px 38px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.31s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 13px;
}

.SubmitButton:hover {
    background: var(--ocean-depth);
    transform: translateY(-3px);
    box-shadow: 0 8px 23px rgba(0, 122, 146, 0.25);
}

.FormDisclaimer {
    font-size: 14px;
    color: var(--charcoal-text);
    font-style: italic;
}

/* Footer */
.SiteFooter {
    background: var(--charcoal-text);
    color: var(--pearl-white);
    padding: 56px 0 23px;
}

.FooterGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 43px;
    margin-bottom: 34px;
}

.FooterHeading {
    color: var(--crystal-sky);
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.FooterSubheading {
    color: var(--crystal-sky);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.FooterText {
    margin-bottom: 21px;
    line-height: 1.6;
}

.ContactInfo p {
    margin-bottom: 8px;
    font-size: 15px;
}

.FooterLinks {
    list-style: none;
}

.FooterLinks li {
    margin-bottom: 9px;
}

.FooterLinks a {
    color: var(--pearl-white);
    text-decoration: none;
    transition: color 0.25s ease;
}

.FooterLinks a:hover {
    color: var(--crystal-sky);
}

.FooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 21px;
    text-align: center;
    font-size: 14px;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .MobileMenuTrigger {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .NavigationContainer {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--pearl-white);
        transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .MenuCollection {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .NavigationElement {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .MenuLink {
        display: inline-block;
        padding: 13px 23px;
        font-size: 19px;
        color: var(--ocean-depth);
    }

    .MenuToggleControl:checked ~ .NavigationContainer {
        left: 0;
    }

    .MenuToggleControl:checked ~ .MobileMenuTrigger .BurgerAnimation {
        background: transparent;
    }

    .MenuToggleControl:checked ~ .MobileMenuTrigger .BurgerAnimation:before {
        transform: rotate(45deg);
        top: 0;
    }

    .MenuToggleControl:checked ~ .MobileMenuTrigger .BurgerAnimation:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .ContentBoundary {
        padding: 0 28px;
    }
}

@media screen and (max-width: 890px) {
    .HeroContentGrid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ImpactStatement {
        font-size: 2.6rem;
    }

    .BalanceGrid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .CalculatorInterface {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .FormLayout {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .FooterGrid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .BalanceStats {
        justify-content: space-around;
        gap: 21px;
    }
}

@media screen and (max-width: 640px) {
    .ImpactHeroCanvas {
        padding: 56px 0 43px;
    }

    .ImpactStatement {
        font-size: 2.1rem;
    }

    .HeroActionZone {
        justify-content: center;
    }

    .TrackerMetrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .MetricNumber {
        font-size: 2.1rem;
    }

    .IntensityLevels {
        grid-template-columns: 1fr;
    }

    .IntensityLevel.Featured {
        transform: none;
    }

    .TestimonialTrees {
        grid-template-columns: 1fr;
    }

    .CompassGrid {
        grid-template-columns: 1fr;
    }
}

/* Cookie Banner Styles */
.CookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #007a92 0%, #00b4d8 100%);
    color: white;
    padding: 23px 0;
    box-shadow: 0 -8px 32px rgba(0, 122, 146, 0.25);
    z-index: 10000;
    transform: translateY(100%);
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 3px solid rgba(255, 255, 255, 0.2);
}

.CookieConsentBanner.show {
    transform: translateY(0);
}

.CookieBannerContainer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.CookieBannerGrid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
}

.CookieMessage {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.CookieMessage strong {
    font-weight: 600;
    color: #e6f7fc;
}

.CookieActions {
    display: flex;
    gap: 17px;
    align-items: center;
    flex-shrink: 0;
}

.CookieButton {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.CookieButton:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.CookieButton.Primary {
    background: white;
    color: #007a92;
    border-color: white;
}

.CookieButton.Primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.CookieLink {
    color: #e6f7fc;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.25s ease;
}

.CookieLink:hover {
    color: white;
}

/* Enhanced Visual Effects */
.CookieConsentBanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 25%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 75%,
    transparent 100%
    );
}

/* Responsive Design */
@media screen and (max-width: 890px) {
    .CookieBannerGrid {
        grid-template-columns: 1fr;
        gap: 21px;
        text-align: center;
    }

    .CookieActions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .CookieMessage {
        font-size: 15px;
    }
}

@media screen and (max-width: 640px) {
    .CookieConsentBanner {
        padding: 18px 0;
    }

    .CookieBannerContainer {
        padding: 0 18px;
    }

    .CookieButton {
        padding: 10px 18px;
        font-size: 14px;
    }

    .CookieActions {
        gap: 12px;
    }
}

/* Animation for show/hide */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.CookieConsentBanner.show {
    animation: slideUp 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Body padding when banner is shown */
body.cookie-banner-active {
    padding-bottom: 120px;
    transition: padding-bottom 0.45s ease;
}

@media screen and (max-width: 890px) {
    body.cookie-banner-active {
        padding-bottom: 140px;
    }
}


.show-banner-btn {
    background: #00b4d8;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

/* About Page Specific Styles */
.EnvironmentalMissionCanvas {
    background: linear-gradient(135deg, var(--morning-mist) 0%, var(--pearl-white) 100%);
    padding: 89px 0 76px;
    border-bottom: 3px solid var(--morning-mist);
}

.MissionGrid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}

.MissionTitle {
    font-size: 3.1rem;
    margin-bottom: 23px;
    line-height: 1.2;
}

.MissionDescription {
    font-size: 19px;
    margin-bottom: 34px;
    line-height: 1.6;
}

.MissionPillars {
    display: grid;
    gap: 28px;
}

.PillarItem {
    padding: 21px;
    background: var(--pearl-white);
    border: 2px solid var(--morning-mist);
    border-radius: 9px;
    transition: all 0.29s ease;
}

.PillarItem:hover {
    transform: translateX(8px);
    border-color: var(--crystal-sky);
}

.PillarTitle {
    color: var(--ocean-depth);
    margin-bottom: 11px;
}

.MissionVisual img {
    width: 100%;
    height: auto;
    border-radius: 11px;
    box-shadow: 0 13px 34px rgba(0, 122, 146, 0.15);
}

/* Timeline Styles */
.ChroniclesTimeline {
    position: relative;
    padding-left: 43px;
}

.ChroniclesTimeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--crystal-sky) 0%, var(--ocean-depth) 100%);
}

.TimelineEntry {
    position: relative;
    margin-bottom: 47px;
    display: flex;
    gap: 23px;
}

.TimelineMarker {
    position: absolute;
    left: -37px;
    width: 34px;
    height: 34px;
    background: var(--crystal-sky);
    color: var(--pearl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 3px solid var(--pearl-white);
}

.TimelineContent {
    background: var(--shadow-grey);
    border: 2px solid var(--morning-mist);
    border-radius: 11px;
    padding: 26px;
    width: 100%;
}

.TimelineTitle {
    color: var(--ocean-depth);
    margin-bottom: 13px;
}

.TimelineText {
    margin-bottom: 17px;
    line-height: 1.6;
}

.TimelineStats {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.StatBadge {
    background: var(--crystal-sky);
    color: var(--pearl-white);
    padding: 6px 13px;
    border-radius: 17px;
    font-size: 13px;
    font-weight: 600;
}

/* Principles Tree Styles */
.PrinciplesForest {
    display: grid;
    gap: 28px;
}

.PrincipleBranch {
    display: flex;
    gap: 21px;
    align-items: flex-start;
    padding: 26px;
    background: var(--shadow-grey);
    border: 2px solid var(--morning-mist);
    border-radius: 11px;
    transition: all 0.31s ease;
}

.PrincipleBranch:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 28px rgba(0, 122, 146, 0.12);
    border-color: var(--crystal-sky);
}

.BranchIcon {
    flex-shrink: 0;
}

.IconCircle {
    width: 43px;
    height: 43px;
    background: var(--crystal-sky);
    border-radius: 50%;
    position: relative;
}

.IconCircle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 17px;
    height: 17px;
    background: var(--pearl-white);
    border-radius: 50%;
}

.BranchTitle {
    color: var(--ocean-depth);
    margin-bottom: 11px;
}

.BranchDescription {
    line-height: 1.6;
}

/* Milestones Grid */
.MilestonesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.MilestoneCard {
    background: var(--pearl-white);
    border: 2px solid var(--morning-mist);
    border-radius: 11px;
    padding: 28px;
    transition: all 0.31s ease;
}

.MilestoneCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 43px rgba(0, 122, 146, 0.12);
}

.MilestoneCard.Environmental {
    border-top: 4px solid #27ae60;
}

.MilestoneCard.Social {
    border-top: 4px solid #3498db;
}

.MilestoneCard.Governance {
    border-top: 4px solid #9b59b6;
}

.MilestoneCard.Financial {
    border-top: 4px solid #f39c12;
}

.MilestoneCategory {
    color: var(--ocean-depth);
    margin-bottom: 21px;
    text-align: center;
}

.MilestoneMetrics {
    display: grid;
    gap: 17px;
}

.MetricItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.MetricValue {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--crystal-sky);
    margin-bottom: 5px;
}

.MetricUnit {
    font-size: 13px;
    color: var(--charcoal-text);
}

/* Team Excellence */
.ExpertiseAreas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
    margin-bottom: 56px;
}

.ExpertiseCard {
    background: var(--pearl-white);
    border: 2px solid var(--morning-mist);
    border-radius: 11px;
    padding: 28px;
    text-align: center;
    transition: all 0.29s ease;
}

.ExpertiseCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 43px rgba(0, 122, 146, 0.12);
    border-color: var(--crystal-sky);
}

.ExpertiseCard img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 21px;
}

.ExpertiseTitle {
    color: var(--ocean-depth);
    margin-bottom: 13px;
}

.CommitmentGrid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 43px;
    align-items: center;
}

.CommitmentTitle {
    color: var(--ocean-depth);
    margin-bottom: 21px;
}

.CommitmentText {
    margin-bottom: 28px;
    line-height: 1.6;
}

.CommitmentPromises {
    display: grid;
    gap: 17px;
}

.PromiseItem {
    display: flex;
    flex-direction: column;
    padding: 17px;
    background: var(--morning-mist);
    border-radius: 8px;
}

.PromiseTitle {
    font-weight: 600;
    color: var(--ocean-depth);
    margin-bottom: 5px;
}

.PromiseDesc {
    font-size: 14px;
    color: var(--charcoal-text);
}

.CommitmentVisual img {
    width: 100%;
    height: auto;
    border-radius: 11px;
}

/* Thank You Page Styles */
.ThankYouHeroCanvas {
    background: linear-gradient(135deg, var(--morning-mist) 0%, var(--pearl-white) 100%);
    padding: 89px 0 76px;
    border-bottom: 3px solid var(--morning-mist);
}

.ThankYouGrid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}

.SuccessIcon {
    text-align: center;
    margin-bottom: 34px;
}

.CheckmarkCircle {
    width: 89px;
    height: 89px;
    background: var(--success-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.Checkmark {
    width: 28px;
    height: 17px;
    border-left: 4px solid var(--pearl-white);
    border-bottom: 4px solid var(--pearl-white);
    transform: rotate(-45deg);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.ThankYouTitle {
    font-size: 3.1rem;
    color: var(--ocean-depth);
    margin-bottom: 23px;
    text-align: center;
}

.ThankYouMessage {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 43px;
    text-align: center;
}

.NextStepsTimeline {
    background: var(--shadow-grey);
    border: 2px solid var(--morning-mist);
    border-radius: 11px;
    padding: 34px;
}

.TimelineTitle {
    text-align: center;
    margin-bottom: 34px;
    color: var(--ocean-depth);
}

.StepItem {
    display: flex;
    gap: 21px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.StepItem:last-child {
    margin-bottom: 0;
}

.StepNumber {
    width: 34px;
    height: 34px;
    background: var(--crystal-sky);
    color: var(--pearl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.StepTitle {
    color: var(--ocean-depth);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.StepDescription {
    margin-bottom: 8px;
    line-height: 1.6;
}

.StepTime {
    font-size: 13px;
    color: var(--crystal-sky);
    font-weight: 600;
}

.ThankYouVisual img {
    width: 100%;
    height: auto;
    border-radius: 11px;
    box-shadow: 0 13px 34px rgba(0, 122, 146, 0.15);
}

/* Preparation Cards */
.PreparationCards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.PrepCard {
    background: var(--pearl-white);
    border: 2px solid var(--morning-mist);
    border-radius: 11px;
    padding: 28px;
    text-align: center;
    transition: all 0.29s ease;
}

.PrepCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 43px rgba(0, 122, 146, 0.12);
    border-color: var(--crystal-sky);
}

.PrepCard img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 21px;
}

.PrepTitle {
    color: var(--ocean-depth);
    margin-bottom: 13px;
}

.PrepDescription {
    margin-bottom: 21px;
    line-height: 1.6;
}

.PrepAction {
    display: inline-block;
    background: var(--crystal-sky);
    color: var(--pearl-white);
    padding: 12px 23px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.28s ease;
}

.PrepAction:hover {
    background: var(--ocean-depth);
    transform: translateY(-2px);
}

/* Immediate Value Section */
.ImmediateValueSection {
    background: var(--shadow-grey);
    padding: 67px 0;
}

.ValueGrid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 43px;
    align-items: center;
}

.ValueTitle {
    color: var(--ocean-depth);
    margin-bottom: 21px;
}

.ValueDescription {
    margin-bottom: 28px;
    line-height: 1.6;
}

.InsightsList {
    display: grid;
    gap: 21px;
}

.InsightItem {
    display: flex;
    gap: 17px;
    align-items: flex-start;
}

.InsightIcon {
    width: 34px;
    height: 34px;
    background: var(--crystal-sky);
    color: var(--pearl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.InsightTitle {
    color: var(--ocean-depth);
    margin-bottom: 5px;
    font-size: 1rem;
}

.InsightDesc {
    font-size: 14px;
    line-height: 1.5;
}

.ValueVisual img {
    width: 100%;
    height: auto;
    border-radius: 11px;
}

/* Contact Confirmation */
.ContactConfirmationSection {
    padding: 56px 0;
    background: var(--morning-mist);
}

.ConfirmationBox {
    background: var(--pearl-white);
    border: 2px solid var(--crystal-sky);
    border-radius: 11px;
    padding: 34px;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.ConfirmationTitle {
    color: var(--ocean-depth);
    margin-bottom: 17px;
}

.ConfirmationText {
    margin-bottom: 28px;
    line-height: 1.6;
}

.ContactMethods {
    display: grid;
    gap: 17px;
    margin-bottom: 28px;
}

.ContactMethod {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px;
    background: var(--shadow-grey);
    border-radius: 8px;
}

.ContactIcon {
    font-size: 24px;
}

.ContactDetails {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.ContactLabel {
    font-size: 13px;
    color: var(--charcoal-text);
    font-weight: 600;
}

.ContactValue {
    font-size: 15px;
    color: var(--ocean-depth);
    font-weight: 500;
}

.UrgentNote {
    background: var(--morning-mist);
    border: 1px solid var(--crystal-sky);
    border-radius: 8px;
    padding: 17px;
    font-size: 14px;
    line-height: 1.5;
}

/* Return Navigation */
.ReturnNavigationSection {
    padding: 43px 0;
}

.NavigationOptions {
    text-align: center;
}

.NavTitle {
    color: var(--ocean-depth);
    margin-bottom: 23px;
}

.NavButtons {
    display: flex;
    gap: 17px;
    justify-content: center;
    flex-wrap: wrap;
}

.NavButton {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.28s ease;
}

.NavButton.Primary {
    background: var(--crystal-sky);
    color: var(--pearl-white);
    border: 2px solid var(--crystal-sky);
}

.NavButton.Primary:hover {
    background: var(--ocean-depth);
    border-color: var(--ocean-depth);
    transform: translateY(-2px);
}

.NavButton.Secondary {
    background: transparent;
    color: var(--ocean-depth);
    border: 2px solid var(--ocean-depth);
}

.NavButton.Secondary:hover {
    background: var(--ocean-depth);
    color: var(--pearl-white);
    transform: translateY(-2px);
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 890px) {
    .MissionGrid,
    .ThankYouGrid,
    .ValueGrid,
    .CommitmentGrid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .MissionTitle,
    .ThankYouTitle {
        font-size: 2.4rem;
    }

    .ChroniclesTimeline {
        padding-left: 28px;
    }

    .TimelineMarker {
        left: -23px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .ChroniclesTimeline::before {
        left: -9px;
    }

    .PrincipleBranch {
        flex-direction: column;
        text-align: center;
        gap: 17px;
    }

    .MilestonesGrid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .ExpertiseAreas {
        grid-template-columns: 1fr;
    }

    .PreparationCards {
        grid-template-columns: 1fr;
    }

    .ContactMethods {
        gap: 13px;
    }

    .ContactMethod {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .ContactDetails {
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .NextStepsTimeline {
        padding: 23px;
    }

    .StepItem {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }

    .InsightItem {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }

    .TimelineStats {
        justify-content: center;
    }

    .BalanceStats {
        flex-direction: column;
        gap: 17px;
    }

    .NavButtons {
        flex-direction: column;
        align-items: center;
    }

    .NavButton {
        width: 100%;
        max-width: 280px;
    }
}