:root {
    /* Color Palette */
    --primary-color: #1F3448;
    /* Dark Slate Blue - from reference */
    --primary-light: #2C4A64;
    --secondary-color: #9AB09C;
    /* Sage Green - from reference */
    --secondary-dark: #8CA08E;
    --bg-color: #FDFBF7;
    /* Cream/Off-white - from reference */
    --bg-light: #FFFFFF;
    --bg-accent: #EFF3F0;
    --text-main: #1F3448;
    --text-muted: #5A6B7C;
    --text-light: #FDFBF7;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 90px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(31, 52, 72, 0.05);
    --shadow-md: 0 10px 15px rgba(31, 52, 72, 0.08);
    --shadow-lg: 0 20px 25px rgba(31, 52, 72, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1A3A5A;
    /* Reverting to the deeper Navy Blue which is more distinctly blue than the slate */
    letter-spacing: -1px;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
}

.text-center {
    text-align: center;
}

/* Highlight Style from Reference */
.highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(154, 176, 156, 0.3);
    z-index: -1;
    border-radius: 6px;
    transform: rotate(-1deg);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* --- Header --- */
.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    background-color: rgba(250, 250, 245, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* --- Hero --- */
.hero {
    padding: 60px 0 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--secondary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* --- Problem Section --- */
.problem-section .grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.affirmation {
    background-color: var(--bg-accent);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 50px;
    border-left: 4px solid var(--secondary-color);
}

.affirmation p {
    margin: 0;
    font-size: 1.1rem;
}

/* --- Insight Section --- */
.insight-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.insight-section h2,
.insight-section h3 {
    color: var(--text-light);
}

.contrast-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: stretch;
}

.contrast-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

.contrast-column {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius-md);
}

.contrast-column h3 {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    font-size: 1.2rem;
}

.contrast-column ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.contrast-column ul li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contrast-column.reality {
    background: rgba(125, 157, 134, 0.15);
    /* Subtle green tint */
    border: 1px solid rgba(125, 157, 134, 0.3);
}

/* --- Benefits Section --- */
.benefits-section .check-list li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.benefits-section .check-list li::before {
    content: '✔';
    color: var(--secondary-dark);
    position: absolute;
    left: 0;
    top: 2px;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color);
}

/* --- Framework Section --- */
.framework-section {
    background-color: var(--bg-accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.feature-item h3 {
    font-size: 1.1rem;
    margin: 0;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* --- Audience Section --- */
.audience-grid {
    max-width: 800px;
    margin: 0 auto;
}

.helpful {
    background-color: #E8EDEB;
    padding: 40px;
    border-radius: var(--radius-lg);
}

.helpful ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%237D9D86" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z"/></svg>') no-repeat left 2px;
}

.highlight-text {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.who-card {
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.who-card.for {
    background-color: rgba(125, 157, 134, 0.05);
}

.who-card.not-for {
    background-color: rgba(0, 0, 0, 0.02);
    color: var(--text-muted);
}

.who-card ul li {
    margin-bottom: 0.8rem;
}

/* --- Facilitator Section --- */
.facilitator-content {
    max-width: 700px;
    margin: 30px auto 0;
}

.tags-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.tag {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.quote-large {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--secondary-dark);
    margin-top: 40px;
}

/* --- Details & CTA --- */
.details-section {
    padding-bottom: 120px;
}

.details-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.details-card h2 {
    color: var(--text-light);
}

.details-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.details-list li {
    font-size: 1.1rem;
}

.details-list span {
    margin-right: 8px;
}

.cta-wrapper {
    margin-top: 40px;
}

.details-card .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
}

.details-card .btn-primary:hover {
    background-color: var(--text-light);
    border-color: var(--text-light);
    color: var(--primary-color);
}

.contact-number {
    margin-top: 1rem;
    opacity: 0.8;
}

/* --- Footer --- */
.footer {
    background-color: #112438;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

/* --- Floating CTA --- */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

/* --- Media Queries --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-container .btn {
        width: 100%;
        max-width: 300px;
    }

    .contrast-grid {
        grid-template-columns: 1fr;
    }

    .contrast-divider {
        padding: 20px 0;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .details-list {
        flex-direction: column;
        gap: 20px;
    }

    .details-card {
        padding: 40px 20px;
    }

    .floating-cta {
        display: block;
    }

    .header .btn {
        display: none;
    }

    /* Ensure header title is visible but smaller on mobile */
    .header-title-wrapper {
        display: block;
        margin: 0 10px;
    }

    .header-title-wrapper h2 {
        font-size: 1.2rem !important;
        /* Force smaller size on mobile */
        line-height: 1.3;
    }

    /* Hide header button on mobile, use floating CTA */
}

@media (max-width: 480px) {

    /* Ensure logo doesn't get squashed */
    .logo img {
        max-height: 40px;
    }
}