/* Legal Pages Styles */
.legal-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 5%;
    text-align: left;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.legal-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-color);
}

.legal-content {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--accent-color);
}

.thanks-section {
    text-align: center;
}

.thanks-section .legal-content ul {
    list-style: none;
    padding: 0;
}

.thanks-section .legal-content li {
    margin: 10px 0;
}

.thanks-section .cta-button {
    margin-top: 30px;
    display: inline-block;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .legal-section {
        padding: 60px 5%;
    }

    .legal-section h2 {
        font-size: 2rem;
    }

    .legal-content h3 {
        font-size: 1.3rem;
    }
}