/* Styling for the Refund Policy section */
.refund-policy-section {
    display: flex;
    justify-content: left;
    min-height: 100vh;
    background-color: #f9f9f9;
    color: #333;
    padding: 0;
}

.refund-policy-section .container {
    width: 85%;
    max-width: 1200px;
    padding: 30px;
}

.refund-policy-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.refund-policy-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
}

.refund-policy-section h4 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    text-align: left;
}

.refund-policy-section p, 
.refund-policy-section ul {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: left;
}

.refund-policy-section ul {
    list-style-type: disc;
    margin-left: 20px;
}

.refund-policy-section li {
    margin-bottom: 10px;
}

.refund-policy-section a {
    color: #0066cc;
    text-decoration: none;
}

.refund-policy-section a:hover {
    text-decoration: underline;
}
