.legal-section {
    padding: 90px 0;
    background: #f8f9fc;
}

/* Header */
.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h2 {
    font-size: 42px;
    font-weight: 700;
}

.legal-header p {
    color: #555;
    font-size: 16px;
    margin-top: 10px;
}

/* Cards */
.legal-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    animation: fadeUp 0.8s ease;
    position: relative;
}

.legal-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #0d224a, #f4ba18);
    border-radius: 20px 0 0 20px;
}

.legal-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-card i {
    color: #f4ba18;
}

.legal-card p {
    color: #444;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-card ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-card ul li {
    font-size: 15px;
    margin-bottom: 8px;
    position: relative;
}

.legal-card ul li::marker {
    color: #f4ba18;
}

/* Footer Acceptance */
.legal-footer {
    background: #0d224a;
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(13,34,74,0.3);
    animation: fadeUp 1s ease;
}

.legal-footer i {
    font-size: 26px;
    color: #f4ba18;
}

.legal-footer p {
    font-size: 15px;
    line-height: 1.6;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .legal-header h2 {
        font-size: 32px;
    }

    .legal-card {
        padding: 30px;
    }
}
