﻿
.header {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.policy-badge {
    background-color: #e9ecef;
    color: #495057;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #212529;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.policy-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
}

.policy-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0 !important;
    display: flex;
    margin-top: 0px !important;
    align-items: center;
}

    .policy-title i {
        margin-right: 0.75rem;
        color: #0d6efd;
    }

.policy-body {
    padding: 1.5rem;
}

.policy-item {
    padding: 1rem;
    border-bottom: 1px solid #f1f3f4;
}

    .policy-item:last-child {
        border-bottom: none;
    }

.policy-question {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

    .policy-question i {
        color: #0d6efd;
        margin-right: 0.75rem;
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

.policy-answer {
    color: #495057;
    margin-bottom: 0;
    padding-left: 2rem;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    margin: 1rem 0;
}

.highlight-title {
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.contact-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid #e9ecef;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-contact {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

    .btn-contact:hover {
        background-color: #0b5ed7;
        color: white;
    }

    .btn-contact i {
        margin-right: 0.5rem;
    }

.btn-outline {
    background-color: transparent;
    color: #0d6efd;
    border: 1px solid #0d6efd;
}

    .btn-outline:hover {
        background-color: #0d6efd;
        color: white;
    }

@media (max-width: 768px) {
    .header {
        padding: 2rem 0;
    }

    .page-title {
        font-size: 32px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-contact {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}


.booling-policy-section ul {
    padding-left: 0px;
    margin: 0;
}
.booling-policy-section h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 28px;
}
.booling-policy-section h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 26px;
}

.booling-policy-section li {
    color: black;
    list-style: none;
    position: relative;
    padding-left: 30px; /* space for the icon */
}

    .booling-policy-section li::before {
        content: "\f00c"; /* Font Awesome check-circle */
        font-family: "Font Awesome 6 Free";
        font-weight: 900; /* Required for solid icons */
        position: absolute;
        left: 0;
        top: 0.1em;
        color: #fb4141;
        font-size: 1em;
        border-radius: 2px;
    }

.faq-item {
    background: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
    padding: 15px 0px 20px;
    border-bottom:1px solid #eee;
}

.faq-question {
    font-weight: 600;
    color: #023e8a;
    cursor: pointer;
    font-size:22px;
    position: relative;
    padding-right: 25px;
}
.faq-answer {
    margin-top: 10px;
    line-height: 1.5;
}