@import url("./components/header.css");
@import url("./components/footer.css");
.static-page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.static-page-content {
    font-size: 1rem;
    line-height: 1.8;
}

.static-page-content h2,
.static-page-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.static-page-content ul {
    padding-left: 1.2rem;
}

.static-page-content p {
    margin-bottom: 1rem;
}

/* HERO */
.static-hero {
    background: #ffffff;
    padding: 70px 0 40px;
    border-bottom: 1px solid #eee;
}

.static-hero h1 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

/* CONTENT */
.static-content {
    background: #f6f7f3; /* light neutral like your screenshot */
    padding: 60px 0;
}

.static-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 900px;
    margin: auto;
}

/* TYPOGRAPHY */
.static-card h1 {
    display: none; /* hide pasted h1 */
}

.static-card h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.static-card h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

.static-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.static-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.static-card ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* LINKS */
.static-card a {
    color: #2e7d32; /* match brand green */
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .static-hero h1 {
        font-size: 28px;
    }

    .static-card {
        padding: 25px;
    }
}

