.page-faq__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    background-color: #F4F7FB; /* Background color */
}

.page-faq__hero-image-wrapper {
    width: 100%;
    position: relative;
}

.page-faq__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%; /* Ensure responsiveness */
    min-height: 200px; /* Minimum size requirement */
}

.page-faq__hero-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
    color: #1F2D3D;
}

.page-faq__main-title {
    font-size: clamp(2rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1F2D3D;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.page-faq__cta-button:hover {
    opacity: 0.9;
}

.page-faq__faq-list-section {
    background-color: #F4F7FB; /* Background color */
    padding: 60px 0;
}

.page-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-faq__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1F2D3D;
}

.page-faq__faq-list {
    background-color: #FFFFFF; /* Card BG color */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-faq__faq-item {
    border-bottom: 1px solid #D6E2FF; /* Border color */
}

.page-faq__faq-item:last-child {
    border-bottom: none;
}

.page-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.page-faq__question:hover {
    background-color: rgba(47, 107, 255, 0.05); /* Light hover effect with primary color */
}

.page-faq__question[aria-expanded="true"] {
    background-color: rgba(47, 107, 255, 0.1);
    color: #2F6BFF; /* Primary color for expanded question */
}

.page-faq__toggle-icon {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: 15px;
}

.page-faq__toggle-icon::before,
.page-faq__toggle-icon::after {
    content: '';
    position: absolute;
    background-color: #2F6BFF; /* Primary color for icon */
    transition: transform 0.3s ease;
}

.page-faq__toggle-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.page-faq__toggle-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.page-faq__question[aria-expanded="true"] .page-faq__toggle-icon::after {
    transform: translateX(-50%) rotate(90deg); /* Rotate to form a minus sign */
}

.page-faq__answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #F8F9FA; /* Slightly different background for answer */
}

.page-faq__answer p {
    padding-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #1F2D3D; /* Text Main color */
}

/* Expanded state for answer */
.page-faq__question[aria-expanded="true"] + .page-faq__answer {
    max-height: 500px; /* Adjust as needed */
    padding-top: 15px;
    padding-bottom: 20px;
}

.page-faq__contact-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #A5C4FF; /* Glow color for CTA background */
    border-radius: 12px;
    color: #1F2D3D;
}

.page-faq__contact-text {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1F2D3D;
}

.page-faq__contact-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.page-faq__contact-button:hover {
    opacity: 0.9;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .page-faq__hero-content {
        margin: 30px auto;
        padding: 0 15px;
    }

    .page-faq__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-faq__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-faq__cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .page-faq__faq-list-section {
        padding: 40px 0;
    }

    .page-faq__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }

    .page-faq__question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-faq__answer p {
        padding-bottom: 15px;
        font-size: 0.9rem;
    }

    .page-faq__question[aria-expanded="true"] + .page-faq__answer {
        padding-top: 10px;
        padding-bottom: 15px;
    }

    .page-faq__contact-cta {
        margin-top: 40px;
        padding: 20px;
    }

    .page-faq__contact-text {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .page-faq__contact-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Ensure all images are responsive and do not overflow */
    .page-faq__hero-image,
    .page-faq__container img {
        max-width: 100%;
        height: auto;
    }
}