/* ================= LEGAL PAGE STYLES ================= */
.legal-hero {
    position: relative;
   padding-top: 150px;
   padding-bottom: 50px;
    background: #d5e7f9;
    overflow: hidden;
    text-align: center;
}

/* SOFT GLOW (Consistent with Contact/About) */
.legal-hero::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: -20%;
    right: -20%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 60%);
    filter: blur(80px);
    z-index: 1;
}

.legal-hero .container {
    position: relative;
    z-index: 2;
}

.legal-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.legal-meta {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* CONTENT SECTION */
.legal-content-section {
    padding: 80px 0;
    background: #fff;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
}

.legal-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 25px 0 15px;
}

.legal-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.legal-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.legal-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

.legal-card ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #2563eb;
    font-size: 16px;
}

/* CONTACT INFO BOX */
.legal-contact-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    margin-top: 50px;
}

.legal-contact-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.legal-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item span {
    font-size: 14px;
    color: #475569;
}

/* BREADCRUMB */
.legal-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.legal-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.legal-breadcrumb span {
    color: #94a3b8;
    margin: 0 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 32px;
    }
    
    .legal-content-section {
        padding: 50px 0;
    }
}
