/* FAQs Page Styles */
:root {
    --navy: #1a1a2e;
    --orange: #e44d26;
    --soft-gray: #f8fafc;
    --text-dark: #334155;
    --teal: #14b8a6;
}

.faqs-hero {
    background: white;
    padding: 56px 0 56px;
    text-align: center;
    color: #334155;
    position: relative;
    overflow: hidden;
}

.faqs-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(228, 77, 38, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.faqs-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #003566;
}

.faqs-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
.hero-content-box {
    border-bottom: 2px solid #ff5e14; /* Orange line under content */
    padding: 0 20px 15px 20px;
    display: inline-block;
    max-width: 850px;
    margin: 0 auto;
}
.faqs-content-section {
    padding: 64px 0;
    background-color: var(--soft-gray);
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.brand-faq-group {
    margin-bottom: 40px;
}

.brand-faq-group h2 {
    color: var(--navy);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-faq-group h2 img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.brand-faq-group h2::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #e2e8f0, transparent);
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    border-color: rgba(228, 77, 38, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 22px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    line-height: 1.5;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--soft-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--orange);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--orange);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .faqs-hero h1 {
        font-size: 2.5rem;
    }

    .brand-faq-group h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }
}
