* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.terms-wrapper {
    background: #f5f7fa;
    min-height: calc(100vh - 70px);
    padding: 40px 20px;
}

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.terms-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: 20px;
}

.terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.terms-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.terms-header p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.terms-content {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.8;
}

.terms-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin-top: 32px;
    margin-bottom: 16px;
}

.terms-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
    margin-top: 24px;
    margin-bottom: 12px;
}

.terms-content p {
    margin-bottom: 16px;
}

.terms-content ul,
.terms-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.terms-content li {
    margin-bottom: 8px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.back-btn svg {}

.highlight-box {
    background: rgba(12, 149, 30, 0.08);
    border-left: 4px solid var(--color-primary);
    padding: 20px 24px;
    margin: 32px 0;
    border-radius: 10px;
}

.highlight-box strong {
    color: var(--color-primary);
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-wrapper {
        padding: 20px 16px;
    }

    .terms-card {
        padding: 24px;
    }

    .terms-header h1 {
        font-size: 28px;
    }

    .terms-content h2 {
        font-size: 20px;
    }

    .terms-content h3 {
        font-size: 16px;
    }
}