/* ==========================================
   LEGAL PAGES STYLES
   ========================================== */

/* Hero */
.legal-hero {
    height: 30vh;
    background-color: #000000;
    background-image: linear-gradient(
        135deg,
        #000000 0%,
        #1A1A1A 50%,
        #536878 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.legal-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.legal-hero-content p {
    color: #CCCCCC;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Content section */
.legal-section {
    background-color: #F2F2F2;
    padding: 5rem 0;
}

/* Content wrapper */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Intro paragraph */
.legal-intro {
    background-color: #536878;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.legal-intro p {
    color: #ffffff;
    line-height: 1.9;
    font-size: 1rem;
    margin: 0;
}

/* Legal blocks */
.legal-block {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #536878;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.legal-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legal-block h2 i {
    color: #536878;
    font-size: 1.2rem;
}

.legal-block p {
    color: #444444;
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.legal-block ul li {
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.legal-block ul li::before {
    content: '•';
    color: #536878;
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Contact info */
.legal-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #536878;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.legal-contact i {
    color: #536878;
}

/* Footer legal links */
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-legal-links a {
    color: #888888;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #536878;
}

.footer-legal-links span {
    color: #555555;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero-content h1 {
        font-size: 2rem;
    }

    .legal-block {
        padding: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
