* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.faq-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.faq-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.faq-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.faq-item {
    margin-bottom: 1rem;
}

.question {
    font-size: 1.1rem;
    color: #444;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.question i {
    transition: transform 0.3s ease;
}

.answer {
    color: #666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.contact-section {
    text-align: center;
}

.contact-text {
    color: #666;
    margin-bottom: 1rem;
}

.contact-info {
    color: #666;
    line-height: 1.8;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #ff6b6b;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .faq-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .faq-content {
        padding: 1rem;
    }

    .question {
        font-size: 1rem;
    }

    .answer {
        font-size: 0.9rem;
    }
}
