.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.faq-container h1 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #000;
    font-weight: 600;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    font-weight: bold;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #00666B;
}

.faq-question {
    padding: 1.5rem 5rem 1.5rem 2rem;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    font-size: 1.7rem;
    color: #222;
    transition: all 0.3s ease;
}

.faq-question.active {
    color: #00666B;
    background-color: #f9f9f9;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #00666B;
    border: 1.5px solid #00666B;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-question.active:after {
    content: '-';
    background-color: #00666B;
    color: #fff;
    border-color: #00666B;
}

.faq-answer {
    display: none;
    padding: 2rem;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Response Breakpoints */
@media (max-width: 768px) {
    .faq-container {
        padding: 15px;
    }

    .faq-container h1 {
        font-size: 2.6rem;
        margin-bottom: 2rem;
    }

    .faq-category h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1.5rem;
        padding: 1.2rem 4.5rem 1.2rem 1.5rem;
    }

    .faq-question:after {
        width: 28px;
        height: 28px;
        font-size: 1.8rem;
        right: 1.2rem;
    }

    .faq-answer {
        padding: 1.5rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .faq-container h1 {
        font-size: 2.2rem;
    }

    .faq-category h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 1.4rem;
        padding: 1rem 4rem 1rem 1rem;
    }

    .faq-question:after {
        width: 24px;
        height: 24px;
        font-size: 1.6rem;
        right: 1rem;
    }
}