
/* ===================================================
   6.TERMS & CONDITIONS PAGE
   =================================================== */

/* Header */
.terms-header {
    text-align: center;
    background-color: #171717;
    padding: 2rem;
    border-bottom: 2px solid #F91229;
    margin-top: 5rem;
}

.terms-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.terms-header p {
    font-size: 1rem;
    opacity: 0.7;
}

.terms-section {
    background-color: #1c1c1c; /* Full-page background */
    width: 100%;
    padding: 3rem 0; /* Ensure spacing from top and bottom */
}

.terms-content {
    text-align: left;
    max-width: 900px; /* Keep content width constrained */
    margin: auto;
    padding: 3rem 5%;
    background-color: transparent; /* Remove extra background */
    background-color: #1c1c1c;
}

.terms-content h2 {
    font-size: 1.8rem;
    color: #F91229;
    margin-bottom: 10px;
}

.terms-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* List Styles */
.terms-content ul {
    list-style: none;
    padding: 0;
}

.terms-content ul li {
    background: #222;
    padding: 10px;
    margin: 5px 0;
    border-left: 4px solid #F91229;
}

/* Contact Section */
.contact-links {
    margin-top: 2rem;
    text-align: center;
}

.contact-links p {
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .terms-content {
        padding: 2rem;
    }

    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-content h2 {
        font-size: 1.6rem;
    }
}

