.faq-page {
    background: #f6fbf7;
    color: #1c2a21;
}

.faq-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: clamp(3rem, 3vw + 2rem, 4.5rem) 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    z-index: 0;
}

.faq-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(105, 207, 154, 0.14) 0%, rgba(124, 199, 255, 0.12) 100%);
    z-index: -1;
}

.faq-hero__body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 620px;
    width: 100%;
}

.faq-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(76, 175, 125, 0.12);
    border: 1px solid rgba(76, 175, 125, 0.35);
    color: #1c7b4b;
    font-weight: 600;
    font-size: 0.85rem;
}

.faq-hero__title {
    font-size: clamp(2.3rem, 4vw, 3.1rem);
    line-height: 1.1;
    font-weight: 800;
    color: #122117;
    margin: 0;
}

.faq-hero__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5c51;
    margin: 0;
}

.faq-hero__search {
    display: grid;
    gap: 0.75rem;
    width: 100%;
}

.faq-input,
.faq-select {
    width: 100%;
    border: 1px solid #cfe3d6;
    background: #ffffff;
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    font-size: 0.98rem;
    line-height: 1.4;
    color: #1f2f26;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.faq-input:focus,
.faq-select:focus {
    outline: none;
    border-color: #44c37b;
    box-shadow: 0 0 0 3px rgba(68, 195, 123, 0.18);
}

.faq-input::placeholder {
    color: #8ea097;
}

.faq-hero__results {
    font-size: 0.92rem;
    color: #5a6d63;
    margin: -0.25rem 0 0;
}

.faq-hero__meta {
    font-size: 0.92rem;
    color: #3f5249;
    margin: 0;
}

.faq-hero__meta a {
    color: #1e8c53;
    font-weight: 600;
    text-decoration: none;
}

.faq-hero__meta a:hover {
    text-decoration: underline;
}

.faq-hero__media {
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    border: 1px solid rgba(94, 125, 112, 0.18);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(30, 68, 52, 0.16);
    background: #ffffff;
}

.faq-hero__media img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-grid-section {
    padding: clamp(2.5rem, 3vw + 1rem, 4rem) 1.5rem 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.75rem;
}

.faq-card {
    background: #ffffff;
    border: 1px solid #dce8e1;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(18, 52, 37, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(18, 52, 37, 0.12);
}

.faq-card__media {
    width: 100%;
    border-bottom: 1px solid #ebf2ed;
    overflow: hidden;
}

.faq-card__media img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-card__body {
    padding: 1.6rem 1.6rem 0.75rem;
    text-align: left;
}

.faq-card__title {
    margin: 0 0 0.4rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #13241a;
}

.faq-card__summary {
    margin: 0;
    font-size: 0.98rem;
    color: #4c6258;
    text-align: left;
}

.faq-card__note {
    margin: 0 1.6rem 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    background: rgba(255, 210, 126, 0.22);
    border: 1px solid rgba(255, 210, 126, 0.5);
    color: #7b5a1f;
    font-size: 0.92rem;
    line-height: 1.4;
    text-align: left;
}

.faq-accordion {
    padding: 0 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    text-align: left;
}

.faq-acc-item {
    border: 1px solid #e3eee8;
    border-radius: 16px;
    background: #fbfdfa;
    overflow: hidden;
}

.faq-acc-item--hidden {
    display: none;
}

.faq-acc-btn {
    width: 100%;
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    border: 0;
    background: transparent;
    color: #203429;
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-acc-btn:focus-visible {
    outline: 3px solid rgba(68, 195, 123, 0.45);
    outline-offset: 2px;
}

.faq-acc-btn:hover {
    background: rgba(68, 195, 123, 0.08);
    color: #166d41;
}

.faq-acc-icon {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    stroke: currentColor;
    transition: transform 0.25s ease;
}

.faq-acc-btn[aria-expanded="true"] .faq-acc-icon {
    transform: rotate(45deg);
}

.faq-acc-panel {
    padding: 0 1.1rem 1.1rem;
    font-size: 0.94rem;
    line-height: 1.6;
    color: #4a6055;
    text-align: left;
}

.faq-acc-panel p {
    margin: 0.75rem 0 0;
}

.faq-panel-note {
    margin-top: 0.75rem;
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
    background: rgba(100, 177, 255, 0.15);
    border: 1px dashed rgba(100, 177, 255, 0.55);
    color: #23507a;
}

.faq-kbd {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    background: #edf4ef;
    border: 1px solid #d5e4da;
    font-family: "SFMono-Regular", Menlo, Consolas, monospace;
    font-size: 0.82rem;
    color: #3a5246;
}

.faq-empty {
    margin: 2.5rem auto 0;
    max-width: 520px;
    text-align: center;
    padding: 2.2rem;
    border: 1px dashed #c7dbd1;
    border-radius: 18px;
    background: #ffffff;
    color: #2c3f35;
}

.faq-empty h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.faq-empty p {
    margin: 0;
    font-size: 0.95rem;
    color: #4d6259;
}

.faq-empty a {
    color: #1e8c53;
    font-weight: 600;
    text-decoration: none;
}

.faq-empty a:hover {
    text-decoration: underline;
}

.faq-cta {
    max-width: 1100px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: #122c1f;
    color: #e8fff5;
    border-radius: 22px;
    padding: clamp(2rem, 2vw + 1.5rem, 2.8rem);
    border: 1px solid rgba(68, 195, 123, 0.38);
    align-items: flex-start;
}

.faq-cta__body h3 {
    margin: 0 0 0.3rem;
    font-size: 1.7rem;
    font-weight: 700;
}

.faq-cta__body p {
    margin: 0;
    font-size: 1rem;
    color: rgba(232, 255, 245, 0.85);
}

.faq-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    background: #62d487;
    color: #0f291b;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(21, 128, 76, 0.25);
}

.faq-card--hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (min-width: 768px) {
    .faq-hero__search {
        grid-template-columns: minmax(0, 1fr) 220px;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .faq-hero {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-card,
    .faq-cta__button,
    .faq-acc-icon {
        transition: none;
    }
}

