html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #2d2d2d;
    background-color: #f9faf8;
}

.hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b5e20;
    margin: 0 0 1.5rem;
    line-height: 1.3;
}

.hero .tagline {
    font-size: 1.15rem;
    color: #33691e;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: #2e7d32;
    color: #fff;
}

.btn-secondary {
    background-color: #fff;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 960px;
    margin: 0 auto;
}

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

.feature h2 {
    font-size: 1.3rem;
    color: #2e7d32;
    margin: 0 0 0.75rem;
}

.feature p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.landing-footer {
    text-align: center;
    padding: 2rem;
    color: #888;
    border-top: 1px solid #e0e0e0;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}
