/* Legal Pages Styling */
.legal-hero {
    background: linear-gradient(135deg, #8B0000 0%, #4a0000 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.legal-hero .last-updated {
    font-size: 1rem;
    opacity: 0.8;
}

.legal-content {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #333;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    color: #8B0000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-section h2 i {
    font-size: 1.4rem;
    opacity: 0.7;
}

.legal-section p {
    margin-bottom: 20px;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section ul li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: disc;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-answer {
    padding: 0 25px 20px;
    color: #666;
    display: none;
    animation: fadeInDown 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.2rem;
    }
    .legal-content {
        padding: 40px 20px;
    }
}
