/* Simple FAQ Section Styles */
#faq {
    background: #002787;
    padding: 80px 20px;
}

.faq-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #28160c;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.3em;
    margin: 0;
    color: #fff;
    font-family: 'Chewy', cursive;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.faq-icon span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

.faq-icon span:first-child {
    top: 50%;
    transform: translateY(-50%);
}

.faq-icon span:last-child {
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    margin: 25px 0;
    color: #fff;
    font-size: 1em;
    line-height: 1.6;
}

/* Active States */
.faq-item.active .faq-icon span:last-child {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    #faq {
        padding: 60px 15px;
    }

    .faq-container {
        padding: 0 10px;
    }
    
    .faq-question h3 {
        font-size: 1.1em;
    }
} 