/* ═══════════════════════════════════════════════════════════════
   Terms & Conditions — Alpha Adventures
   ═══════════════════════════════════════════════════════════════ */

.tc-wrapper {
    background-color: #fafbfc;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

.tc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color1, #fe5100);
    padding-bottom: 15px;
}

.tc-header i {
    font-size: 32px;
    color: var(--primary-color1, #fe5100);
}

.tc-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.tc-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.tc-section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.tc-section-num {
    display: inline-block;
    background-color: var(--primary-color1, #fe5100);
    color: #ffffff;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    margin-right: 10px;
    vertical-align: middle;
}

.tc-section h4 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 14px;
    display: inline;
}

.tc-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 15px;
}

.tc-section ul {
    padding-left: 22px;
    margin-bottom: 14px;
}

.tc-section ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 15px;
}

.tc-section ul li strong {
    color: #1a1a1a;
}

.tc-intro {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ── Responsive — Tablet ─────────────────────────────────── */
@media (max-width: 1024px) {
    .tc-wrapper {
        padding: 30px;
    }
    .tc-header h2 {
        font-size: 28px;
    }
}

/* ── Responsive — Mobile ─────────────────────────────────── */
@media (max-width: 640px) {
    .tc-wrapper {
        padding: 20px;
    }
    .tc-header h2 {
        font-size: 24px;
    }
    .tc-section h4 {
        font-size: 16px;
    }
    .tc-section p,
    .tc-section ul li {
        font-size: 14px;
    }
}
