.terms-container {
    padding: 120px 0.5rem 0;
    min-height: 100vh;
}

.terms-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0.5rem;
}

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

.terms-section h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--color-text);
}

.terms-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.terms-content {
    background: transparent;
    padding: 2rem;
}

.terms-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--color-text);
}

.terms-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--color-text);
}

.terms-content ul,
.terms-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.terms-content a {
    color: var(--color-text);
    text-decoration: none;
}

.terms-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-section {
        padding: 1rem 0.5rem;
    }

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

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

    .terms-content {
        padding: 1rem;
    }
} 