/* --- TERMS OF USE PAGE STYLES --- */

.terms-main {
    padding-top: 180px; /* Space for fixed navbar */
    padding-bottom: 100px;
    min-height: 80vh;
}

.terms-glass-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.terms-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 300;
}

.last-updated {
    font-size: 0.9rem !important;
    color: #de0000 !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .terms-main {
        padding-top: 120px;
    }
    .terms-glass-box {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .terms-content p {
        font-size: 1rem;
    }
}