/* Legal and Thank You page styles */
.legal-content, .thank-you-content {
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2, .thank-you-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content h3, .thank-you-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem;
}

.legal-content p, .thank-you-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.legal-content ul, .thank-you-content ul {
    list-style: disc;
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul li, .thank-you-content ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-content a, .thank-you-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover, .thank-you-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.thank-you-content .contact-info {
    margin: 2rem 0;
    text-align: center;
}

.thank-you-content .contact-info ul {
    list-style: none;
    padding: 0;
}

.thank-you-content .contact-info li {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.thank-you-content .contact-info i {
    margin-right: 0.5rem;
    color: #007bff;
}

.thank-you-content .cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thank-you-content .cta-button:hover {
    background-color: #0056b3;
}

/* Responsive design */
@media (max-width: 768px) {
    .legal-content, .thank-you-content {
        padding: 1.5rem;
    }

    .legal-content h2, .thank-you-content h2 {
        font-size: 1.8rem;
    }

    .legal-content h3, .thank-you-content h3 {
        font-size: 1.3rem;
    }

    .legal-content p, .thank-you-content p {
        font-size: 0.95rem;
    }
}