/* ================================
   Terms & Conditions Section
================================ */

.terms-section {
    padding: 80px 20px;
    background-color: #f9fbfd;
}

.terms-section .container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* Main Title */
.terms-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
    position: relative;
}

.terms-section h2::after {
    content: "";
    width: 60px;
    height: 3px;
    
    display: block;
    margin: 15px auto 0;
    border-radius: 3px;
}

/* Sub Headings */
.terms-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
   
}

/* Paragraphs */
.terms-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* Lists */
.terms-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    list-style: disc;
}

.terms-section ul li::marker {
    color:black;
}

/* Hover effect (optional premium feel) */
.terms-section .container:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 50px 15px;
    }

    .terms-section .container {
        padding: 30px;
    }

    .terms-section h2 {
        font-size: 28px;
    }

    .terms-section h3 {
        font-size: 20px;
    }

    .terms-section p,
    .terms-section ul li {
        font-size: 15px;
    }
}