/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #1a5f4a 0%, #2d8659 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== FAQ Content ===== */
.faq-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h2 {
    font-size: 28px;
    color: #1a5f4a;
    margin-bottom: 30px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid #1a5f4a;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-top: none;
    background-color: #ffffff;
}

.faq-item:first-child {
    border-top: 1px solid #e0e0e0;
    border-radius: 8px 8px 0 0;
}

.faq-item:last-child {
    border-radius: 0 0 8px 8px;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: #f5f5f0;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background-color: #efefea;
}

.faq-question.active {
    background-color: #1a5f4a;
    color: white;
}

.faq-toggle {
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #ffffff;
}

.faq-answer.active {
    max-height: 1000px;
}

.faq-answer p {
    padding: 20px;
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0 20px 20px 20px;
}

.faq-answer li {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.faq-answer li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f4a;
    font-weight: 700;
}

.faq-answer strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* ===== CTA Final ===== */
.cta-final {
    background: linear-gradient(135deg, #1a5f4a 0%, #2d8659 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-final h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: white;
    font-weight: 700;
}

.cta-final .btn {
    padding: 14px 32px;
    font-size: 14px;
    background-color: white;
    color: #1a5f4a;
    font-weight: 700;
}

.cta-final .btn:hover {
    background-color: #f5f5f0;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }

    .faq-category h2 {
        font-size: 22px;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
    }

    .faq-answer p,
    .faq-answer ul {
        padding: 15px;
    }

    .cta-final h2 {
        font-size: 24px;
    }
}
