/* Home page SEO content sections */

.seo-section {
    padding: 70px 0;
}
.seo-section.bg-smoke {
    background-color: var(--smoke-color);
}
.seo-section .title-area {
    margin-bottom: 50px;
}
.seo-section .about-text-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.seo-check-list {
    max-width: 820px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
.seo-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--body-color);
    opacity: 0.85;
    font-size: 15px;
    line-height: 1.6;
}
.seo-check-list li i {
    color: var(--theme-color);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* FAQ accordion */
.faq-item {
    background-color: var(--white-color);
    border: 1px solid var(--smoke-color);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}
.faq-item__q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--title-font);
    font-size: 15px;
    font-weight: 700;
    color: var(--title-color);
    cursor: pointer;
}
.faq-item__q .faq-item__icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--smoke-color);
    color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.faq-item__q .faq-item__icon .fa-minus {
    display: none;
}
.faq-item__q:not(.collapsed) .faq-item__icon {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.faq-item__q:not(.collapsed) .faq-item__icon .fa-plus {
    display: none;
}
.faq-item__q:not(.collapsed) .faq-item__icon .fa-minus {
    display: inline;
}
.faq-item__a {
    padding: 0 24px 22px;
    color: var(--body-color);
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.75;
}
.faq-item__a ul {
    margin: 10px 0 0;
    padding-left: 20px;
}
.faq-item__a ul li {
    margin-bottom: 6px;
}

/* CTA banner (merged with the existing enquiry form section's intro) */
.seo-cta-eyebrow {
    display: inline-block;
    background-color: var(--theme-color2);
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}

@media (max-width: 767px) {
    .seo-section {
        padding: 50px 0;
    }
}

/* 5-equal-column row for the "How to Start" step process (Bootstrap has no
   native 1/5 column class) */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Text + image pairing, used for the H1 intro, the quality section, and the
   growing-opportunity section so they're not just bare paragraphs. Layout
   itself comes from Bootstrap's row/col grid (see markup); this just styles
   the image. */
.seo-img-pair__img img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(18, 38, 22, 0.12);
}

/* Certification badge cluster, used alongside the quality checklist */
.seo-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.seo-badge-grid__item {
    background-color: var(--white-color);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(18, 38, 22, 0.07);
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}
.seo-badge-grid__item img {
    max-width: 100%;
    max-height: 100%;
    width: 65%;
    object-fit: contain;
}

/* Product category carousel (Section 2) — circular product photo like the
   home page's "Pick Your Wellness Category" step items */
.category-slide {
    text-align: center;
    padding: 10px 14px 20px;
}
.category-slide__img {
    position: relative;
    display: inline-flex;
    padding: 10px;
    border: 3px dashed var(--theme-color2);
    border-radius: 50%;
    margin-bottom: 24px;
}
.category-slide__img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}
.category-slide h3 {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}
.category-slide p {
    color: var(--body-color);
    opacity: 0.75;
    font-size: 13.5px;
    line-height: 1.7;
    padding: 0 6px;
}