/* --- FAQ SECTION STYLING --- */
.faq-section {
    width: 100%;
    padding: 80px 0 100px 0;
    /* Updated Gradient: Light Teal to White */
     background: linear-gradient(to bottom,
      rgba(223, 237, 241, 0.5) 0%, /* Faded Teal Top */
      rgba(255, 255, 255, 0) 100%  /* Transparent Bottom */
    );
    font-family: 'Inter', sans-serif;
}

/* Card Styling - Made to "Pop" on gradient */
.custom-card {
    border: 1px solid #eef2f5;
    border-radius: 16px !important;
    margin-bottom: 20px;
    /* Increased gap */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    /* Softer shadow */
    overflow: hidden;
    background: #fff;
    width: 100%;
    transition: all 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(7, 124, 140, 0.1);
    border-color: var(--primary-color);
}

/* Button Styling */
.accordion-button {
    font-weight: 600;
    color: #2c3e50;
    background-color: #fff;
    padding: 20px 25px;
    font-size: 1.05rem;
    border: none;
    box-shadow: none !important;
}

/* Active State */
.accordion-button:not(.collapsed) {
    color: #077c8c;
    background-color: #f8fdfe;
    /* Very light teal bg when open */
    box-shadow: inset 3px 0 0 #077c8c !important;
    /* Left teal accent line */
}

/* Arrow Icon Styling */
.accordion-button::after {
    background-size: 1rem;
    transition: 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23077c8c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

/* Body Text */
.accordion-body {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 10px 25px 25px 25px;
    background-color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0 60px 0;
    }

    .accordion-button {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 10px 20px 20px 20px;
    }

    .custom-card {
        margin-bottom: 15px;
    }
}