:root {
    --g: #00703c;
    --g-dark: #004d29;
    --g-light: #e6f4ed;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    margin: 0;
}

.mkt-nav {
    background: var(--g-dark);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.mkt-brand {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
}

.mkt-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.mkt-nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.88rem;
}

.mkt-nav-links a:hover {
    color: #fff;
}

.mkt-btn-nav {
    background: var(--g) !important;
    color: #fff !important;
    padding: 0.35rem 0.9rem !important;
    border-radius: 20px;
    font-weight: 600 !important;
}

.mkt-hero-sm {
    background: linear-gradient(160deg, #003d20 0%, var(--g) 70%, #00897b 100%);
    color: #fff;
    padding: 3rem 1.5rem;
    text-align: center;
}

.mkt-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a8edca;
    margin-bottom: 0.5rem;
}

.mkt-hero-sm h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    max-width: 820px;
    margin: 0 auto 1rem;
    line-height: 1.2;
}

.mkt-lead {
    max-width: 680px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.mkt-content {
    padding: 2.5rem 1rem 3rem;
    max-width: 820px;
}

.mkt-content h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--g-dark);
    margin: 2rem 0 0.75rem;
}

.mkt-content p,
.mkt-content li {
    line-height: 1.7;
    color: #444;
}

.mkt-content ul,
.mkt-content ol {
    padding-left: 1.25rem;
}

.mkt-content a {
    color: var(--g);
    font-weight: 600;
}

.mkt-btn-primary {
    display: inline-block;
    background: #fff;
    color: var(--g-dark) !important;
    font-weight: 700;
    padding: 0.7rem 1.6rem;
    border-radius: 30px;
    text-decoration: none;
    margin: 0.25rem;
}

.mkt-hero-sm .mkt-btn-primary {
    background: #fff;
}

.mkt-btn-secondary {
    display: inline-block;
    border: 2px solid var(--g);
    color: var(--g-dark) !important;
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    border-radius: 30px;
    text-decoration: none;
    margin: 0.25rem;
}

.mkt-cta-box {
    background: var(--g-light);
    border: 1px solid #c8e6d4;
    border-radius: 12px;
    padding: 1.75rem;
    margin-top: 2rem;
    text-align: center;
}

.mkt-cta-box h2 {
    margin-top: 0;
    font-size: 1.2rem;
}

.mkt-footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
}

.mkt-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.mkt-footer a:hover {
    color: #fff;
}

@media (max-width: 640px) {
    .mkt-nav {
        flex-direction: column;
        text-align: center;
    }
}
