/* legal.css - Styles for Furux Stadium Privacy Policy, Terms of Service, and Thank You pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.legal-section,
.thanks-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

h1 {
    margin-top: 70px;
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a8a;
}

.legal-content,
.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 50px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 2rem 1rem;
}

.legal-content p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.legal-content ul li {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.legal-content ul li::before {
    content: '\f058';
    /* Font Awesome circle-check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #facc15;
    position: absolute;
    left: 0;
}

.legal-content ul.contact-details li::before {
    content: none;
}

.legal-content ul.contact-details li {
    padding-left: 2rem;
}

.legal-content ul.contact-details li i {
    color: #1e3a8a;
    margin-right: 0.5rem;
}

.legal-content a {
    color: #facc15;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Thanks Section Specific Styles */
.thanks-content {
    text-align: center;
}

.thanks-icon {
    font-size: 3rem;
    color: #facc15;
    margin-bottom: 1rem;
}

.thanks-message {
    margin-bottom: 2rem;
}

.thanks-message p {
    font-size: 1.2rem;
    color: #4b5563;
}

.thanks-cta {
    margin-bottom: 2rem;
}

.thanks-cta h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.thanks-cta p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.thanks-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.thanks-contact {
    margin-top: 2rem;
}

.thanks-contact h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.thanks-contact ul {
    list-style: none;
}

.thanks-contact ul li {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 2rem;
}

.thanks-contact ul li i {
    color: #1e3a8a;
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {

    .legal-section,
    .thanks-section {
        padding: 2rem 0;
    }

    .legal-content h2,
    .thanks-cta h3,
    .thanks-contact h3 {
        font-size: 1.5rem;
    }

    .thanks-icon {
        font-size: 2.5rem;
    }

    .thanks-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}