/* Legal Pages Styling */
.legal-content {
    padding: 180px 0 100px;
    background-color: var(--light-bg);
}

.legal-content .section-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-text {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 0.9rem;
    text-align: right;
}

.legal-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

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

.legal-text h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.legal-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-text ul, .legal-text ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-text ul li, .legal-text ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.disclosure-notice {
    background-color: rgba(240, 185, 11, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 4px 4px 0;
}

.disclosure-notice h2 {
    color: var(--primary-color);
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(240, 185, 11, 0.3);
}

.disclosure-notice p:last-child {
    margin-bottom: 0;
}

.back-to-home {
    margin-top: 50px;
    text-align: center;
}

.back-to-home .btn {
    padding: 12px 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .legal-content {
        padding: 150px 0 70px;
    }
    
    .legal-content .section-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-text {
        padding: 25px;
    }
    
    .legal-text h2 {
        font-size: 1.6rem;
    }
    
    .legal-text h3 {
        font-size: 1.3rem;
    }
}
