/* Legal and Support Pages Styles */
.legal-hero {
    background: #0a192f;
    padding: 60px 0;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.legal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.legal-content-wrapper {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.legal-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

.legal-card h2 {
    color: #0a192f;
    margin: 30px 0 15px;
    font-size: 1.8rem;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-card ul li {
    margin-bottom: 10px;
    color: #555;
    list-style-type: disc;
}

/* FAQ Specific Styles */
.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    background: #007bff;
    color: #fff;
}

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

@media (max-width: 768px) {
    .legal-card {
        padding: 30px 20px;
    }
}
