@charset "UTF-8";

/* FAQ Custom Styling */

.text-center h4 {
    color: #031634;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Page Header Override */
.page-header {
    border-bottom: 2px solid #031634;
    margin: 40px 0 20px;
    padding-bottom: 10px;
}

.page-header h4 {
    margin: 0;
    color: #031634;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.page-header h4 i {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Accordion Customization */
#accordion .panel {
    border: none;
    box-shadow: none;
    margin-bottom: 12px;
    background: transparent;
}

#accordion .panel-heading {
    padding: 0;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#accordion .panel-heading:hover {
    background-color: #ffffff;
    border-color: #031634;
    box-shadow: 0 4px 12px rgba(3, 22, 52, 0.08);
}

#accordion .panel-title a {
    display: block;
    padding: 18px 25px 18px 60px;
    text-decoration: none !important;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    line-height: 1.4;
}

/* Q Indicator */
#accordion .panel-title a::before {
    content: "Q";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-color: #031634;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Arrow indicator (using FontAwesome) */
#accordion .panel-title a::after {
    content: "\f107"; /* fa-angle-down */
    font-family: FontAwesome;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 20px;
    color: #031634;
}

/* Rotate arrow when open */
#accordion .panel-title a:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Active State for Heading */
#accordion .panel-title a:not(.collapsed) {
    color: #031634;
}

#accordion .panel-title a:not(.collapsed).panel-heading {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #ffffff;
}

/* Answer Body */
#accordion .panel-collapse {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-top: -1px;
}

#accordion .panel-body {
    padding: 25px 30px 25px 60px;
    border: none !important;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    position: relative;
}

/* A Indicator */
#accordion .panel-body::before {
    content: "A";
    position: absolute;
    left: 20px;
    top: 25px;
    color: #e67e22; /* Warm orange for Answer */
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* List styling inside answer */
#accordion .panel-body ul {
    margin-top: 15px;
    padding-left: 20px;
}

#accordion .panel-body li {
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    #accordion .panel-title a {
        padding-left: 50px;
        font-size: 15px;
    }
    #accordion .panel-title a::before {
        left: 15px;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }
    #accordion .panel-body {
        padding-left: 50px;
    }
    #accordion .panel-body::before {
        left: 15px;
        font-size: 20px;
    }
}


