/* Terms Page Specific Styles */

.terms-section {
    min-height: calc(100vh - 300px);
    padding: 3rem 1rem;
    background-color: #ffffff;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
}

.terms-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #111111;
}

.terms-updated {
    text-align: center;
    font-size: 0.9rem;
    color: #777777;
    margin-bottom: 3rem;
}

.terms-content {
    line-height: 1.8;
    color: #333333;
}

.terms-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #222222;
}

.terms-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.terms-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

.terms-content a {
    color: #7d1bd1;
    text-decoration: none;
}

.terms-content a:hover {
    text-decoration: underline;
}

.terms-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .terms-section {
        padding: 4rem 2rem;
    }

    .terms-heading {
        font-size: 3rem;
    }

    .terms-actions {
        flex-direction: row;
        justify-content: center;
    }

    .terms-content h2 {
        font-size: 1.75rem;
    }
}