@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');



/* ================= HERO ================= */
.legal-hero {
    background: linear-gradient(135deg, #2819ad, #2f4054);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    padding-top: 100px;
}

.legal-hero .tag {
    background: rgba(255,255,255,0.1);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.legal-hero h1 {
    font-size: 32px;
    margin: 15px 0;
}

.legal-hero p {
    max-width: 600px;
    margin: auto;
    opacity: .9;
}

.hero-points {
    margin-top: 25px;
    display: grid;
    gap: 10px;
    font-size: 15px;
}

/* ================= CONTENT ================= */
.legal-content {
    padding: 50px 0;
}

/* Box Style */
.legal-box {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: .3s;
}

.legal-box:hover {
    transform: translateY(-5px);
}

/* Line Accent */
.legal-box::before {
    content: "";
    position: absolute;
    right: 0;
    top: 20px;
    width: 6px;
    height: 60%;
    background: #2819ad;
    border-radius: 10px;
}

/* Title */
.legal-box h2 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #1e2a38;
}

/* Text */
.legal-box p {
    line-height: 1.8;
    font-size: 15px;
}

/* List */
.legal-box ul {
    list-style: none;
    padding: 0;
}

.legal-box ul li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 18px;
}

.legal-box ul li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: #2819ad;
    font-size: 18px;
}

/* Responsive */
@media (min-width: 768px) {
    .legal-hero h1 {
        font-size: 40px;
    }

    .hero-points {
        grid-template-columns: repeat(2, 1fr);
    }
}