.terms-main {
    min-height: 70vh;
}

.terms-container {
    width: min(900px, calc(100% - 2rem));
    margin: 0 auto;
}

.terms-hero {
    padding: 70px 0 30px;
}

.terms-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(29, 155, 240, 0.25);
    border-radius: 999px;
    background: rgba(29, 155, 240, 0.08);
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
}

.terms-hero h1 {
    max-width: 780px;
    color: var(--text);
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.terms-hero p {
    max-width: 700px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.terms-content {
    padding: 10px 0 70px;
}

.terms-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(18px);
}

.terms-card h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 19px;
    line-height: 1.3;
}

.terms-card h2:first-child {
    margin-top: 0;
}

.terms-card p {
    margin-bottom: 14px;
    color: #b7b7b7;
    font-size: 14px;
    line-height: 1.75;
}

.terms-card ul {
    display: grid;
    gap: 8px;
    margin: 0 0 18px 18px;
    color: #b7b7b7;
}

.terms-card li {
    font-size: 14px;
    line-height: 1.6;
}

.terms-back-link {
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--muted);
    font-size: 13px;
    transition: 0.2s ease;
}

.terms-back-link:hover {
    color: var(--text);
    border-color: rgba(29, 155, 240, 0.4);
    background: rgba(29, 155, 240, 0.06);
}

@media (max-width: 766px) {
    .terms-back-link {
        margin-left: auto;
        font-size: 12px;
        padding: 0.4rem 0.7rem;
    }

    .terms-hero {
        padding-top: 48px;
    }

    .terms-card {
        padding: 22px;
    }
}