/* Terms Content */
.terms {
    padding: 8rem 0 4rem;
    background-color: var(--white);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-content h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.effective-date {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.terms-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.terms-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.terms-content ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.terms-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.terms-content ul li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms {
        padding: 6rem 0 3rem;
    }

    .terms-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .terms-content h1 {
        font-size: 2rem;
    }

    .terms-content h2 {
        font-size: 1.5rem;
    }

    .terms-content p,
    .terms-content ul li {
        font-size: 1rem;
    }
} 