/* ⚖️ POGO MALL LEGAL & POLICY PAGES STYLING */
.legal-container {
    max-width: 950px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

.legal-card {
    background: #ffffff;
    border-radius: 35px;
    padding: 60px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.legal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #074e44, #b99128, #074e44);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-icon {
    width: 90px;
    height: 90px;
    background: #f0fdf4;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #074e44;
    font-size: 36px;
    box-shadow: 0 10px 20px rgba(7, 78, 68, 0.1);
}

.legal-icon svg {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
    fill: #074e44;
    display: block;
}

.legal-card h1 {
    font-size: 42px;
    font-weight: 950;
    color: #0f172a;
    margin: 0;
    letter-spacing: -1.5px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 850;
    color: #1e293b;
    margin: 45px 0 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.legal-content h2 i {
    color: #b99128;
}

.legal-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #334155;
    margin: 30px 0 15px;
}

.legal-content p {
    font-size: 16.5px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 25px;
}

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

.legal-content ul li {
    padding: 18px 25px;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid transparent;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.legal-content ul li:hover {
    border-color: #074e44;
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.legal-content ul li i {
    color: #10b981;
    margin-top: 5px;
}

.highlight-box {
    background: #fff8eb;
    border-left: 6px solid #b99128;
    padding: 30px;
    border-radius: 4px 20px 20px 4px;
    margin: 40px 0;
}

.highlight-box p {
    margin: 0;
    color: #92400e;
    font-weight: 700;
    font-size: 17px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 850;
    font-size: 16px;
    margin-top: 30px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.contact-badge:hover {
    background: #128C7E;
    transform: scale(1.05);
    color: #fff;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 40px 25px;
        border-radius: 25px;
    }

    .legal-card h1 {
        font-size: 32px;
    }

    .legal-content p {
        font-size: 15px;
    }
}
