/* ================= LEGAL HERO ================= */
.legal-hero {
    padding: 160px 20px 80px;
    text-align: center;
    background: linear-gradient(180deg, #fdf8f5 0%, #fff 100%);
    border-bottom: 1px solid var(--border);
}

.last-updated {
    display: inline-block;
    background: rgba(189, 87, 50, 0.08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(189, 87, 50, 0.15);
}

.legal-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.15;
}

/* ================= LAYOUT ================= */
.content-wrap {
    padding: 80px 20px 120px;
}

.container-sm {
    max-width: 820px;
    margin: 0 auto;
}

/* ================= LEGAL SECTIONS ================= */
.legal-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h2 i {
    color: var(--primary);
    font-size: 16px;
}

.legal-section p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

/* ================= LIST ================= */
.legal-list {
    list-style: none;
    margin: 12px 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-list li {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    padding-left: 22px;
    position: relative;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
}

/* ================= IMPORTANT NOTE ================= */
.important-note {
    background: rgba(189, 87, 50, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-top: 20px;
}

/* ================= INFO GRID (Privacy page) ================= */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.info-block {
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}

.info-block h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-block h4 i {
    color: var(--primary);
    font-size: 13px;
}

.info-block .legal-list {
    margin: 0;
}

.info-block .legal-list li {
    font-size: 13px;
}

/* ================= CONTACT BLOCK ================= */
.contact-block {
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: #475569;
}

.contact-row i {
    color: var(--primary);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* ================= LINK ================= */
.legal-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(189, 87, 50, 0.3);
    transition: 0.2s;
}

.legal-link:hover {
    border-bottom-color: var(--primary);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .legal-hero {
        padding: 120px 20px 60px;
    }

    .legal-hero h1 {
        font-size: 34px;
    }

    .content-wrap {
        padding: 50px 20px 80px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .legal-section h2 {
        font-size: 18px;
    }
}