.terms-page {
    padding-top: 100px;
    min-height: 100vh;
}
.terms-hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}
.terms-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.terms-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}
.terms-content {
    padding: 5rem 0;
    max-width: 800px;
    margin: 0 auto;
}
.terms-section { margin-bottom: 3rem; }
.terms-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}
.terms-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    margin-top: 2rem;
}
.terms-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.terms-section ul {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}
.terms-section li { margin-bottom: 0.5rem; }
.last-updated {
    background: var(--light-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
}
.contact-section {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}
.contact-section h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.contact-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .terms-hero h1 { font-size: 2rem; }
    .terms-content { padding: 3rem 1rem; }
}
