/* FAQ SECTION - EDITORIAL DESIGN */
.faq-section {
    padding: 100px var(--inner-px);
    display: flex;
    gap: 80px;
    background: #fff;
}

.faq-sidebar {
    flex: 1; /* Flexible width */
    min-width: 400px; /* Safe minimum for large text */
    background: var(--accent);
    padding: 100px 60px; /* Massive padding instead of width */
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 700px;
    position: relative;
}

.faq-sidebar::before {
    content: 'TECHNICAL // SUPPORT / 05';
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 9px;
    letter-spacing: 4px;
    color: #000;
    opacity: 0.3;
    font-weight: 700;
}

.faq-title {
    font-family: 'Oswald', sans-serif;
    font-size: 8rem;
    line-height: 0.85;
    letter-spacing: -5px;
    color: #000; /* Black on lime */
    text-transform: uppercase;
}

.faq-sidebar-bottom p {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    color: rgba(0,0,0,0.5);
    line-height: 1.4;
}

.faq-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 18px 25px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 1px;
}

.faq-contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ACCORDION */
.faq-list {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 10px;
    transition: background 0.3s;
}

.faq-question {
    width: 100%;
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-question h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.faq-answer p {
    padding-bottom: 35px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0,0,0,0.7);
    max-width: 800px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Safe upper limit for text */
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* MOBILE */
@media (max-width: 1024px) {
    .faq-section { flex-direction: column; gap: 40px; padding: 60px 20px; }
    .faq-sidebar { flex: 0 0 auto; width: 100%; height: auto; padding: 40px 30px; }
    .faq-title { font-size: 4rem; margin-bottom: 40px; }
}
