/*  */


/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */
/* ====== FINAL & EXACT HELP/CONTACT PAGE CSS ========= */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

/* --- Main Page Container (from previous step) --- */
.help-contact-section {
    background-color: #f9fafb; /* bg-gray-50 */
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
    font-family: system-ui;
}
.help-contact-container {
    /* width: 100%; */
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ======================================================= */
/* ====== EXACT FAQ SECTION CSS ========================== */
/* ======================================================= */

.faq-section {
    /* bg-gray-50 parent se aa raha hai, isliye isko yahan set karne ki zaroorat nahi */
    padding-top: 5rem;    /* pt-20 */
    padding-bottom: 4rem; /* pb-16 */
}

/* --- Banner Styling --- */
.faq-banner {
    text-align: center;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem; /* mb-4 */
}

.icon-background {
    display: inline-flex;
    padding: 1rem; /* p-4 */
    background-color: #dbeafe; /* bg-blue-100 */
    color: #2563eb; /* text-blue-600 */
    border-radius: 9999px; /* rounded-full */
}

.banner-title {
    font-size: 2.25rem; /* text-4xl */
    line-height: 2.5rem;
    font-weight: 700; /* font-bold */
    color: #1f2937; /* text-gray-800 */
    letter-spacing: -0.025em; /* tracking-tight */
}
@media (min-width: 640px) { /* sm:text-5xl */
    .banner-title {
        font-size: 3rem;
        line-height: 1;
    }
}

.banner-subtitle {
    margin-top: 1rem; /* mt-4 */
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75rem;
    color: #4b5563; /* text-gray-600 */
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
}

/* --- Accordion Styling --- */
.accordion-wrapper {
    max-width: 48rem; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem; /* mt-12 */
    display: flex;
    flex-direction: column;
    gap: 1rem; /* space-y-4 */
}

.accordion-item {
    border: 1px solid #e5e7eb; /* border-gray-200 */
    border-radius: 0.5rem; /* rounded-lg */
    background-color: white; /* Har item ka background white hai */
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem; /* p-5 */
    text-align: left;
    font-weight: 600; /* font-semibold */
    color: #1f2937; /* text-gray-800 */
    background: none;
    border: none;
    cursor: pointer;
}

.accordion-header span {
    padding-right: 1rem;
    font-size: 1rem; /* font size default rakhein font-semibold ke saath */
}

.accordion-arrow {
    transition: transform 0.3s;
    flex-shrink: 0;
}

/* --- Javascript se driven animation ke liye smooth effect --- */
.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
    overflow: hidden;
}
.accordion-content--open {
    grid-template-rows: 1fr;
}

.accordion-text {
   -webkit-line-clamp: 0; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden; /* prevents overflow during animation */
    color: #4b5563; /* text-gray-600 */
    padding: 0 1.25rem 1.25rem 1.25rem; /* Correct padding: no top, sides and bottom have padding */
    font-size: 0.95rem; /* React default se match karta hua */
    line-height: 1.6;  /* Better readability */
}