:root {
    /* Colors - Calming & Accessible Nature Palette */
    --primary-color: #2D6A4F;
    /* Deep Forest Green */
    --secondary-color: #40916C;
    /* Medium Green */
    --accent-color: #D8F3DC;
    /* Soft Mint */
    --background-dark: #1B4332;
    /* Very Dark Green */
    --text-main: #1D1D1F;
    /* Soft Black */
    --text-secondary: #52525B;
    /* Dark Gray */

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background: radial-gradient(circle at 50% 0%, #ffffff 0%, #f4f7f5 100%);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 1.8rem;
}

.badge {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

main {
    animation: fadeIn 0.8s ease-out;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Glass Cards */
.card {
    background: var(--glass-bg);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    padding: 1.5rem;
    margin-bottom: 0;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

h2 {
    color: var(--primary-color);
    margin-top: 0;
}

h3 {
    color: var(--secondary-color);
    margin: 0 0 0.5rem 0;
}

.cta {
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 2rem;
}

.cta p {
    color: var(--text-secondary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.25rem;
    }

    .page-container {
        padding: 1.5rem;
    }
}