* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Helvetica;
}

.faq-hero-section {
    background-color: #172f53;
    background-image: url("/asstes/img/blogs/blog-banner.webp");
    background-size: cover;
    background-repeat: no-repeat;
}

.faq-hero-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 60px 32px;
    position: relative;
}

.faq-hero-section h1 {
    font-family: Helvetica;
    font-weight: 400;
    font-size: 80px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
}

/* Container */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 20px;
}

.faq-accordion {
    display: flex;
    gap: 40px;
}

/* Sidebar */
.faq-sidebar {
    flex: 1 1 220px;
    max-width: 250px;
    border-right: 1px solid #162E51;
    padding-right: 20px;
}

.faq-sidebar h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #162E51;
    text-transform: uppercase;
}

.faq-sidebar ul {
    list-style: none;
}

.faq-sidebar ul li {
    margin: 8px 0;
}

.faq-sidebar ul li a {
    display: block;
    padding: 15px 15px;
    font-size: 16px;
    text-decoration: none;
    color: #000;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, font-weight 0.3s;
}

.faq-sidebar ul li a:hover,
.faq-sidebar ul li a.active {
    background: #00BDE3;
    font-weight: bold;
    color: #fff;
}

/* Content */
.faq-content {
    flex: 3 1 600px;
}

.faq-content p {
    line-height: 1.5;
    margin-bottom: 20px;
    color: 000;
}

/* FAQ Section */
.faq-section {
    display: none;
}

.faq-section.active {
    display: block;
}

.accordion-item {
    border-bottom: 1px solid #162E51;
}

.accordion-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    text-align: left;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    color: #000;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

button.accordion-button.active {
    color: #162e51;
    background: #E5EFF6;
}

.accordion-button:hover {
    background: #E5EFF6;
}

.accordion-button::after {
    content: "+";
    font-size: 25px;
    transition: transform 0.3s;
}

.accordion-button.active::after {
    content: "-";
    font-size: 25px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    font-size: 14px;
    color: #555;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 15px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-hero-section h1 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .faq-sidebar {
        max-width: 100%;
        padding-bottom: 15px;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .faq-sidebar {
        display: none;
    }

    .faq-hero-section .container {
        min-height: 200px;
    }

    .faq-hero-section h1 {
        font-size: 30px;
    }
}



/*-------FAQ Page design------------*/
.faq-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.faq-inner-card {
    flex: 1 1 calc(33% - 20px);
    background: #fff;
    padding: 30px;
    padding-bottom: 80px;
    border-radius: 6px;
    position: relative;
    background-color: #e5eff666;
}

.faq-inner-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #162E51;
}

.faq-inner-card p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.faq-btn {
    font-family: Helvetica;
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    background-color: #162E51;
    border: 1px solid #162E51;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 6px;
    position: absolute;
    bottom: 25px;
    transition: all .3s;
}

.faq-btn:hover {
    background: transparent;
    color: #162E51;
}

/* Contact Section */
.faq-contact {
    width: 100%;
    background: #162e51;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 8px;
    margin: 30px 0;
}

.faq-contact .contact-text {
    max-width: 70%;
    color: #fff;
}

.faq-contact .contact-text h3 {
    margin: 0 0 15px;
    font-size: 20px;
}

.faq-contact .contact-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.faq-contact .faq-btn-black {
    font-family: Helvetica;
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    background-color: #00bde3;
    border: 1px solid #00bde3;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all .3s;
}

.faq-contact .faq-btn-black:hover {
    background-color: #FFFFFF;
    color: #162e51;
    border-color: #162e51;
}

/* Responsive */
@media (max-width: 767px) {
    .faq-inner-card {
        flex: 1 1 100%;
    }

    .faq-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .faq-contact .contact-text {
        max-width: 100%;
    }
}