/* --- New Color Palette: Dark Teal & Lime Theme --- */
:root {
    --color-bg-body: #ffffff;
    --color-bg-offset: #f3f6f5;
    /* Very light cool gray/teal tint */
    --color-text-main: #2d3748;
    --color-text-muted: #64748b;
    --color-primary-dark: #0f3d3e;
    /* Deep Forest Teal */
    --color-primary-mid: #145354;
    --color-accent: #a3e635;
    /* Electric Lime */
    --color-accent-hover: #84cc16;
    --color-border: #e2e8f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    color: var(--color-primary-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

/* --- Layout Utility --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.text-center {
    text-align: center;
}

/* --- Top Bar & Header --- */
.top-announcement {
    background-color: var(--color-primary-dark);
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
}

.header {
    background: #ffffff;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.header-container {
    display: flex;
    justify-content: center;
    /* Centered Logo */
}

.logo img {
    display: block;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

/* Hero Button: Lime Green on Dark */
.btn-hero-action {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(163, 230, 53, 0.4);
}

.btn-hero-action:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 230, 53, 0.6);
}

/* Standard Primary Button */
.btn-primary-solid {
    background-color: var(--color-primary-dark);
    color: #ffffff;
    border: 2px solid var(--color-primary-dark);
}

.btn-primary-solid:hover {
    background-color: transparent;
    color: var(--color-primary-dark);
}

/* --- Improved Hero Section --- */
.hero-wrapper {
    position: relative;
    padding: 100px 0 120px;
    background-color: var(--color-primary-dark);
    color: #ffffff;
    overflow: hidden;
}

/* Abstract Background Shape */
.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, #145354, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-lead {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 90%;
}

/* Hero Card Design */
.hero-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    text-align: center;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-card-content {
    position: relative;
    z-index: 2;
}

.logo-wrapper {
    background: #ffffff;
    padding: 15px 25px 5px 25px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 30px;
}

/* --- Content Sections --- */
.section {
    padding: 80px 0;
}

.bg-offset {
    background-color: var(--color-bg-offset);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Section Title with Vertical Line (Left Side) */
.section-title {
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
    padding-left: 24px;
    position: relative;
    border-left: 6px solid var(--color-accent);
    /* The Vertical Line */
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    color: var(--color-text-main);
}

/* Grid Layouts */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Feature Card */
.card-feature {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--color-primary-dark);
}

/* Styled List */
.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.styled-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-primary-dark);
    font-weight: bold;
}

/* --- Highlighted CTA Section --- */
.cta-highlight-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-box {
    background-color: #f0fdf4;
    /* Very light green bg */
    border: 2px solid var(--color-primary-dark);
    border-radius: 16px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 10px 10px 0px rgba(15, 61, 62, 0.1);
    /* Hard shadow effect */
}

.cta-heading {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 0;
}

.cta-action {
    flex-shrink: 0;
}

/* --- Footer & Disclosure --- */
.disclaimer-block {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin: 60px 0;
    font-size: 0.9rem;
}

.disclosure-section {
    background-color: var(--color-bg-offset);
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
}

.disclosure-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: var(--color-primary-dark);
    padding: 60px 0;
    text-align: center;
    color: #94a3b8;
}

.footer-links a {
    color: #cbd5e1;
    margin: 0 15px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.copyright {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to White */
    opacity: 1;
    /* Ensure full visibility */
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-sub {
        margin: 0 auto;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }

    .hero-wrapper {
        padding: 60px 0 80px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}