/* Terms and Conditions Section */
.terms-and-conditions-section {
    padding: 8rem 2rem 4rem;
    background-color: #23221E;
}

.terms-and-conditions-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-and-conditions-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
}

.terms-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F9C349;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.terms-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.terms-subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F9C349;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.terms-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-list li {
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    margin-bottom: 0.5rem;
}

.terms-list li::before {
    content: "•";
    color: #F9C349;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .terms-and-conditions-section {
        padding: 6rem 1.5rem 3rem;
    }
    
    .terms-and-conditions-title {
        font-size: 2rem;
    }
    
    .terms-section-title {
        font-size: 1.25rem;
    }
}
