/* Styling for the Terms and Conditions section */
.terms-conditions-section {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    background-color: #f9f9f9;
    color: #333;
    padding: 0;
}

.terms-conditions-section .container {
    width: 85%;
    max-width: 1200px;
    padding: 30px;
}

.terms-conditions-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.terms-conditions-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
}

.terms-conditions-section p, 
.terms-conditions-section ul {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify; /* Justify the text */
}

.terms-conditions-section ul {
    list-style-type: disc;
    margin-left: 20px;
}

.terms-conditions-section li {
    margin-bottom: 10px;
}