/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    min-height: calc(100vh - 200px);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* FAQ Title */
.faq-section h2 {
    font-size: 3rem;
    color: #d32f2f;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* FAQ Item */
.faq-item {
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* FAQ Question */
.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question i {
    color: #d32f2f;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question span {
    flex: 1;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }

    .faq-item.active .faq-answer {
        max-height: 800px;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}


