.terms-page {
    background-color: var(--background);
    color: var(--foreground);
    padding: 10rem 0 6rem;
    min-height: 100vh;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.terms-content {
    line-height: 1.8;
}

.terms-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 2rem;
    text-align: center;
}

.terms-content .lastUpdated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 0 4rem;
    text-align: center;
    font-style: italic;
}

.terms-content .introSection {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.terms-content .introText {
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
    color: #e0e0e0;
}

.terms-content .note {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.terms-content .termsBody {
    line-height: 1.8;
}

.terms-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.terms-content h2::before {
    content: '';
    width: 4px;
    height: 1.5rem;
    background: linear-gradient(180deg, #1DBBD1 0%, #B969DC 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.terms-content p {
    margin: 0 0 1.5rem;
    color: #cccccc;
}

.terms-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.5rem;
}

.terms-content li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #cccccc;
}

.terms-content li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #1DBBD1;
    font-weight: bold;
}

.terms-content .contactBox {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(29, 187, 209, 0.1) 0%, rgba(185, 105, 220, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    text-align: center;
}

.terms-content .contactBox h3 {
    margin: 0 0 1rem;
    font-weight: 700;
    color: #ffffff;
    font-size: calc(1.3rem + 0.6vw);
    line-height: 1.2;
}

.terms-content .emailLink {
    color: #1DBBD1;
    font-weight: 600;
    text-decoration: underline;
}

.terms-content .emailLink:hover {
    color: #1DBBD1;
}

@media (max-width: 768px) {
    .terms-content h1 {
        font-size: 2.25rem;
    }

    .terms-content .introSection,
    .terms-content .contactBox {
        padding: 1.5rem;
    }
}
