/* Styling for the Terms of Service Section */
.terms-of-service {
    padding: 50px 0;
    background-color: #11151c;
    color: #f8f0ed;
}

.terms-of-service .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.terms-of-service h1 {
    font-size: 2.8rem;
    color: #A68463;
    margin-bottom: 20px;
    text-align: center;
    display: inline-block;
    border-bottom: 2px solid #A68463; /* Matching the privacy policy underline */
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.terms-of-service h2 {
    font-size: 2rem;
    color: #A68463;
    margin-top: 30px;
}

.terms-of-service p, .terms-of-service ul {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 1px;
    text-align: justify;
    margin-bottom: 20px;
}

.terms-of-service a {
    color: #A68463;
    text-decoration: none;
}

.terms-of-service a:hover {
    text-decoration: underline;
}

.terms-of-service ul {
    text-align: justify;
    list-style-type: disc;
    margin-left: 20px;
}

.terms-of-service ul li {
    text-align: justify;
    margin-bottom: 10px;
}

/* Divider Styling */
.terms-divider {
    border: none;
    border-top: 2px solid #A68463; /* Adjust this to change the thickness and color */
    width: 1500px; /* The divider will span the full width of the content wrapper */
    margin: 0px auto;
    margin-top: 40px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .terms-of-service .container{
        padding: 0 20px;
    }
    .terms-of-service h1 {
        font-size: 2.5rem;
    }

    .terms-of-service h2 {
        font-size: 1.7rem;
    }

    .terms-of-service p, .terms-of-service ul {
        font-size: 0.9rem;
    }

    .terms-divider {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .terms-of-service h1 {
        font-size: 2rem;
    }

    .terms-of-service h2 {
        font-size: 1.5rem;
    }

    .terms-of-service p, .terms-of-service ul {
        font-size: 0.8rem;
    }
}
