body {
    font-family: Arial, sans-serif;
    background: #f6fdf8;
    color: #333;
    margin: 0;
    padding: 0;
}
.hero {
    background: #228B22;
    color: white;
    text-align: center;
    padding: 2rem;
}
.tabs {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.tab-button {
    background: #e0f5e9;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1rem;
    margin: 0 5px;
    transition: background 0.3s ease;
}
.tab-button.active, .tab-button:hover {
    background: #228B22;
    color: white;
}
.tab-content {
    display: none;
    text-align: center;
    padding: 1rem;
}
.tab-content.active {
    display: block;
}
.card {
    background: white;
    margin: 1rem auto;
    padding: 1rem;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.download-section {
    text-align: center;
    margin: 2rem;
}
.download-section a {
    background: #228B22;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
}
.disclaimer {
    text-align: center;
    padding: 1rem;
    background: #f2f2f2;
    font-size: 0.9rem;
}
