/* ============================================================
   BURGOCAR LANDING CORE — About Section Styles
   ============================================================ */
:root {
    --blc-about-dark: #152d24;
    --blc-about-primary: #9AC123;
    --blc-about-text: #4A4A4A;
    --blc-about-bg: #ffffff;
    --blc-about-border: #e2e8f0;
    --blc-about-font-sans: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --blc-about-font-serif: 'Bitter', serif;
}

.blc-about-section {
    padding: 100px 20px;
    background-color: var(--blc-about-bg);
    overflow: hidden;
}

/* Header */
.blc-about-section__header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.blc-about-section__main-title {
    font-family: var(--blc-about-font-serif);
    color: var(--blc-about-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.blc-about-section__main-desc {
    font-family: var(--blc-about-font-sans);
    color: var(--blc-about-dark);
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Columns */
.blc-about-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: center;
}

/* Left Col: Image */
.blc-about-section__images {
    width: 100%;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.blc-about-section__img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Right Col: FAQ Content */
.blc-about-section__content {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    min-width: 0;
}

.blc-about-section__faq-header-texts {
    margin-bottom: 30px;
}

.blc-about-section__badge {
    display: inline-block;
    font-family: var(--blc-about-font-sans);
    color: var(--blc-about-dark);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.blc-about-section__faq-main-title {
    font-family: var(--blc-about-font-serif);
    color: var(--blc-about-primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

/* FAQ Accordion */
.blc-about-faq {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blc-about-faq__item {
    border: 1px solid var(--blc-about-border);
    border-radius: 8px;
    background: var(--blc-about-bg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blc-about-faq__item.is-open {
    border-color: #0B544B;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blc-about-faq__header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: var(--blc-about-bg);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-family: var(--blc-about-font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--blc-about-dark);
    transition: all 0.3s ease;
    white-space: normal;
}

.blc-about-faq__item.is-open .blc-about-faq__header {
    background: #0B544B;
    color: #ffffff;
}

.blc-about-faq__item:not(.is-open) .blc-about-faq__header:hover {
    background-color: var(--blc-about-primary);
    color: #ffffff;
}

.blc-about-faq__icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.blc-about-faq__item.is-open .blc-about-faq__icon {
    transform: rotate(180deg);
}

.blc-about-faq__body {
    display: none;
}

.blc-about-faq__item.is-open .blc-about-faq__body {
    display: block;
}

.blc-about-faq__content {
    padding: 0 25px 25px 25px;
    color: var(--blc-about-text);
    font-family: var(--blc-about-font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: none;
}

.blc-about-faq__item.is-open .blc-about-faq__content {
    /* If the header is dark and body is light, we just need padding */
    padding: 20px 25px 25px 25px;
}

/* Responsive */
@media (max-width: 1024px) {
    .blc-about-section__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .blc-about-section__header {
        margin-bottom: 50px;
    }
    .blc-about-section__main-title {
        font-size: 2.5rem;
    }
    .blc-about-section__images img {
        max-width: 80%;
    }
}

@media (max-width: 767px) {
    .blc-about-section {
        padding: 60px 20px;
    }
    .blc-about-section__header {
        margin-bottom: 40px;
    }
    .blc-about-section__main-title {
        font-size: 2rem;
    }
    .blc-about-section__faq-main-title {
        font-size: 1.8rem;
    }
}
