/* FAQs Section Desktop Styles (min-width: 769px) */
.faqs-section {
    padding: 80px 0;
    background-color: #f0f4f7;
    text-align: center;
}

.faqs-section .section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.faqs-section .section-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: normal;
    text-align: center;
}

.accordion-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left; /* Keep accordion content left-aligned */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Styles for <details> (accordion-item) and <summary> (accordion-header) */
.accordion-item { /* The <details> element */
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden; /* Ensures content is clipped when closed */
    margin-bottom: 15px; /* Space between accordion items */
}

.accordion-header { /* The <summary> element */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background-color: #f7f7f7;
    border: none;
    cursor: pointer;
    text-align: left; /* Text within summary should be left-aligned */
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease;
    list-style: none; /* Hide default triangle icon */
}

.accordion-header:hover {
    background-color: #e9ecef;
}

.accordion-header::-webkit-details-marker, /* Hide default marker for Chrome/Safari */
.accordion-header::marker { /* Hide default marker for Firefox */
    display: none;
}

.accordion-header h4 {
    margin: 0;
    flex-grow: 1;
}

.accordion-icon { /* The chevron icon */
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-icon { /* Rotate icon when <details> is open */
    transform: rotate(180deg);
}

/* Desktop: Rely on native <details> open/close. No explicit height/opacity transitions here. */
.accordion-content { /* The <div> wrapping the answer */
    padding: 20px 25px; /* Default padding for desktop */
    border-top: 1px solid #eee; /* Separator from header */
    /* Removed: height, visibility, opacity, and transitions for desktop */
}

.accordion-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0; /* No bottom margin for the last paragraph in content */
}