/* Refund Policy Styles */
.refund-policy-page {
    padding: 80px 0;
    background-color: #f9f9f9;
    /* light background for readability */
}

.refund-policy-page .refund-policy-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Kumbh Sans', sans-serif;
    color: #333;
    text-align: justify;
    /* Make all text justified */
}

.refund-policy-page .refund-policy-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    /* Heading can remain centered */
    color: #111;
}

.refund-policy-page .refund-policy-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #222;
    text-align: justify;
    /* Optional: justify headings too */
}

.refund-policy-page .refund-policy-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.refund-policy-page .refund-policy-content ul {
    list-style: disc inside;
    margin-bottom: 15px;
    text-align: justify;
    /* Justify list items */
}

.refund-policy-page .refund-policy-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.refund-policy-page .refund-policy-content a {
    color: #007bff;
    text-decoration: none;
}

.refund-policy-page .refund-policy-content a:hover {
    text-decoration: underline;
}

.refund-policy-page .refund-policy-content strong {
    color: #111;
}

@media (max-width: 768px) {
    .refund-policy-page {
        padding: 50px 15px;
    }

    .refund-policy-page .refund-policy-content h1 {
        font-size: 28px;
    }

    .refund-policy-page .refund-policy-content h3 {
        font-size: 18px;
    }
}