/* =====================
   TERMS OF SERVICE PAGE
===================== */

.terms-page {
    background: linear-gradient(135deg, var(--background) 0%, #e8e4df 100%);
    min-height: 100vh;
}

.terms-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 20px;
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
}

.terms-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.terms-last-updated {
    font-size: 0.95rem;
    color: var(--secondary);
    font-style: italic;
}

.terms-content {
    background: var(--white);
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
}

.terms-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.terms-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.terms-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.terms-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1.2;
}

.terms-section ul li strong {
    color: var(--primary);
    font-weight: 600;
}

.terms-section a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-content {
        padding: 30px 25px;
    }

    .terms-header h1 {
        font-size: 2.2rem;
    }

    .terms-section h2 {
        font-size: 1.5rem;
    }

    .terms-section p,
    .terms-section ul li {
        font-size: 1rem;
    }
}