:root {
    --primary-color: #74c69d;
    --secondary-color: #f4f7fb;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --accent-color: #2d6a4f;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-family: "Segoe UI", sans-serif;
}

.terms-header {
    background: var(--primary-color);
    color: #fff;
    padding: 4rem 1rem;
    text-align: center;
}

.terms-header h1 {
    font-weight: 700;
    letter-spacing: 1px;
}

.terms-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    margin-top: -60px;
}

.terms-section {
    margin-bottom: 2rem;
}

.terms-section h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.terms-section ul {
    list-style: none;
    padding-left: 0;
}

.terms-section ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
    color: var(--text-light);
}

.terms-section ul li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
}

footer {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 2rem 0;
}