/* Shared rich-content blocks (sections, feature grid, FAQ accordion)
   Used on index.html, privacy.html, terms.html */

.content-section { background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 30px 32px; margin-bottom: 26px; box-shadow: 0 2px 10px rgba(20, 22, 31, .06); scroll-margin-top: 20px; transition: box-shadow .25s ease; }
.content-section:hover { box-shadow: 0 10px 28px rgba(15, 118, 110, .12); }
.content-section h2 { font-size: 1.4em; font-weight: 700; margin: 0 0 16px; display: flex; align-items: center; gap: 12px; }
.content-section h2 .icon-badge { width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px; background: linear-gradient(135deg, #0f766e, #115e59); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .8em; }
.content-section h3 { font-size: 1.1em; font-weight: 700; margin: 22px 0 10px; color: #23272f; }
.content-section p, .content-section li { color: #3d4148; line-height: 1.75; }
.content-section ul, .content-section ol { padding-left: 20px; }
.content-section ul li, .content-section ol li { margin-bottom: 8px; }

/* ===== Benefit / feature grid ===== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 8px; }
.feature-card { background: #f7f8fa; border-radius: 10px; padding: 18px; border: 1px solid #eee; }
.feature-card i { color: var(--main-accent, #f59e0b); font-size: 1.3em; margin-bottom: 8px; display: block; }
.feature-card strong { display: block; margin-bottom: 4px; color: #23272f; }
.feature-card span { font-size: .88em; color: #6b7280; }

/* ===== FAQ accordion ===== */
.faq-acc-item { border: 1px solid #eee; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-acc-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; cursor: pointer; font-weight: 600; color: #23272f; background: #fff; transition: background .2s ease; }
.faq-acc-q:hover { background: #f7f8fa; }
.faq-acc-q i { color: var(--main-accent, #f59e0b); transition: transform .25s ease; }
.faq-acc-item.open .faq-acc-q i { transform: rotate(180deg); }
.faq-acc-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; background: #f7f8fa; }
.faq-acc-item.open .faq-acc-a { max-height: 300px; }
.faq-acc-a p { padding: 4px 18px 16px; margin: 0; color: #3d4148; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .content-section { padding: 24px 22px; }
}

@media (max-width: 600px) {
    .content-section { padding: 20px 16px; border-radius: 12px; }
    .content-section h2 { font-size: 1.15em; gap: 10px; }
    .content-section h2 .icon-badge { width: 36px; height: 36px; }
    .faq-acc-q { padding: 13px 14px; font-size: .95em; }
}
