﻿.refund-section {
    padding: 60px 0;
}

    .refund-section h2 {
        font-weight: 600;
        margin-bottom: 30px;
    }

    .refund-section h5 {
        font-weight: 600;
        margin-top: 30px;
    }

    .refund-section ul li {
        margin-bottom: 10px;
        list-style:;
    }

    .refund-section ol {
        list-style-type: decimal; /* Adds numbering to the list items */
        margin-left: 20px; /* Adjusts the left margin to align the list properly */
    }

.custom-hero-section {
    background: url('../images/head.jpg') top center/cover no-repeat;
    border-radius: 10px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .custom-hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
        border-radius: 10px;
    }

    .custom-hero-section .container {
        position: relative;
        z-index: 2;
    }
