.page-content {
    padding: 3rem 0;
}

.terms-section {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section h1 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.terms-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.terms-content h2 {
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--light);
    padding-bottom: 0.5rem;
}

.terms-content h3 {
    font-size: 1.4rem;
    color: var(--purple);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.terms-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.terms-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.terms-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.8rem;
}

.terms-content strong {
    color: var(--dark-blue);
}

@media (max-width: 768px) {
    .terms-content {
        padding: 2rem;
    }

    .terms-section h1 {
        font-size: 2rem;
    }

    .terms-content h2 {
        font-size: 1.5rem;
    }

    .terms-content h3 {
        font-size: 1.2rem;
    }
}

