/* ── terms-of-use.css → css/terms-of-use.css ── */

body {
    font-family: 'Poppins', sans-serif;
    background: var(--pg);
    margin: 0; padding-top: 0;
    color: var(--t1); font-size: 14px; line-height: 1.6;
}

/* header overrides — subpage: always solid white, always dark text */
.ireda-header { background: var(--white) !important; box-shadow: 0 2px 20px rgba(30,58,138,.08) !important; }
.header-bg-overlay { background: var(--white) !important; backdrop-filter: none !important; opacity: 1 !important; }
.ireda-header .nav-link,
.ireda-header .glass-btn { color: var(--blue) !important; text-shadow: none !important; }
.ireda-header .utility-link,
.ireda-header .utility-lang-btn,
.ireda-header .utility-font-btn { color: var(--t3) !important; }
.ireda-header .utility-divider { color: var(--border) !important; }
.ireda-header .col-lg-2 img { filter: none !important; opacity: 1 !important; }

/* ── LAYOUT ── */
.tou-main { padding: 2.5rem 0 3.5rem; }
.tou-container {
	max-width: 100%;
	padding: 0 1.5rem;
}

/* ── CARD ── */
.tou-card {
    background: var(--white); border-radius: var(--r1);
    box-shadow: var(--s2); border: 1px solid rgba(37,99,235,.05);
    overflow: hidden;
}
.tou-card::before { content: ''; display: block; height: 4px; background: var(--G); }

.tou-card-header {
    display: flex; align-items: center; gap: .9rem;
    padding: 1rem 1.8rem; background: var(--G);
}
.tou-card-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
    color: var(--white); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
}
.tou-card-title { font-size: .9rem; font-weight: 800; color: var(--white); }
.tou-card-sub   { font-size: .7rem; color: rgba(255,255,255,.65); margin-top: .05rem; }

/* ── CARD BODY ── */
.tou-card-body { padding: 2rem 2.2rem; }

/* ── SECTION ── */
.tou-section { margin-bottom: 0; }

.tou-section-title {
    display: flex; align-items: center; gap: .55rem;
    font-size: .88rem; font-weight: 800; color: var(--blue);
    margin-bottom: .9rem;
}
.tou-section-title i { font-size: .88rem; flex-shrink: 0; }

.tou-section p {
    font-size: .92rem; color: var(--t2); line-height: 1.95;
    margin: 0;
}
.tou-section p a {
    color: var(--blue); font-weight: 600; text-decoration: none;
    transition: color .2s;
}
.tou-section p a:hover { text-decoration: underline; color: var(--mid); }

/* divider between sections */
.tou-divider {
    height: 1px; background: var(--pale);
    margin: 1.8rem 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .tou-card-body { padding: 1.4rem; }
}
@media print {
    .tou-card { box-shadow: none; border: 1px solid #ccc; }
}