:root {
    --primary-color: #4ade80;
    --text-main: #2c3e50;
    --text-light: #8e8e8e;
    --bg-color: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: #fcfcfc;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.content h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.effective-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

p, ul {
    font-size: 1rem;
    color: #444;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

footer {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

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

@media (max-width: 600px) {
    .container {
        padding: 40px 25px;
    }
    .logo {
        font-size: 2rem;
    }
}
