:root {
    --forest: #1a3a2f;
    --pine: #2d5a47;
    --meadow: #4a7c59;
    --stone: #8b9a8e;
    --mist: #d4ddd6;
    --snow: #f5f7f5;
    --trail: #c9a227;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--snow);
    color: var(--forest);
    line-height: 1.6;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--forest) 0%, var(--pine) 50%, var(--meadow) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 50 350 L 100 250 L 150 350 M 80 300 L 100 250 L 120 300' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.1'/%3E%3Cpath d='M 150 350 L 220 200 L 290 350 M 180 280 L 220 200 L 260 280' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.1'/%3E%3Cpath d='M 250 350 L 320 220 L 390 350 M 280 290 L 320 220 L 360 290' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.1'/%3E%3Cpath d='M 10 350 L 60 280 L 110 350' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.08'/%3E%3Cpath d='M 300 350 L 350 270 L 400 350' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.08'/%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--trail);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--snow);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--mist);
    margin-bottom: 2rem;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--mist);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--snow);
    color: var(--forest);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    margin: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--snow);
    border: 2px solid var(--snow);
}

.cta-button.secondary:hover {
    background: var(--snow);
    color: var(--forest);
}

.section {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--forest);
    text-align: center;
}

.section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

.section p {
    font-size: 1.15rem;
    color: var(--pine);
    margin-bottom: 1.5rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3,
.feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--forest);
}

.feature p {
    font-size: 1rem;
    color: var(--stone);
    margin-bottom: 0;
}

.highlight-box {
    background: var(--mist);
    border-left: 4px solid var(--trail);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin: 0;
    font-weight: 600;
    color: var(--forest);
}

.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--pine);
}

.contact-info a {
    color: var(--trail);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    background: var(--pine);
    color: var(--mist);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

footer a {
    color: var(--trail);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .hero {
        padding: 1.5rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

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

    .cta-button {
        display: block;
        margin: 1rem auto;
    }
}
