/* ==========================================================================
   LEGAL PAGES COMMON STYLES (Privacy Policy, Terms & Conditions)
   ========================================================================== */

:root {
    --gold: #dfa91b;
    --gold-light: #f4d068;
    --brand-green: #073c29;
    --brand-green-light: rgba(7, 60, 41, 0.05);
    --bg-cream: #fcfdfa;
    --card-white: #ffffff;
    --text-main: #073c29;
    --text-muted: #556b62;
}

/* HERO SECTION - FALLBACK / PREVIOUS STYLES (Kept for compatibility, though page-header is now preferred) */
.legal-hero {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(252, 253, 250, 0.9), rgba(252, 253, 250, 0.9)), url('/images/slide/slide1.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 1px solid rgba(7, 60, 41, 0.08);
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-green);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.legal-hero h1 span {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumb-custom a {
    color: var(--brand-green);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.breadcrumb-custom a:hover {
    color: var(--gold);
}

/* CONTENT SECTION */
.legal-content-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
    color: var(--text-main);
}

.legal-card {
    background: var(--card-white);
    border: 1px solid rgba(7, 60, 41, 0.08);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(7, 60, 41, 0.04);
}

.legal-item {
    margin-bottom: 40px;
}

.legal-item h2 {
    color: var(--brand-green);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-item h2 i {
    font-size: 1.3rem;
    background: var(--brand-green-light);
    color: var(--brand-green);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(7, 60, 41, 0.05);
}

.legal-item p, .legal-item ul {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-item ul {
    padding-left: 20px;
}

.legal-item ul li {
    margin-bottom: 12px;
    list-style: none;
    position: relative;
}

.legal-item ul li::before {
    content: "✓";
    color: var(--gold);
    position: absolute;
    left: -25px;
    font-weight: 900;
}

.last-updated {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(7, 60, 41, 0.08);
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.2rem;
    }
    
    .legal-card {
        padding: 30px 20px;
    }
    
    .legal-item h2 {
        font-size: 1.4rem;
        gap: 10px;
    }
    
    .legal-item h2 i {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}
