.page-header {
    background: linear-gradient(rgba(255, 182, 193, 0.8), rgba(255, 105, 180, 0.8)), url('https://via.placeholder.com/1200x300') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.faq-intro {
    padding: 60px 0;
    background-color: #fff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: #ff6b9d;
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.faq-section {
    padding: 60px 0;
    background-color: #fffaf8;
}

.faq-section:nth-child(even) {
    background-color: #fff;
}

.faq-section h2 {
    text-align: center;
    color: #ff6b9d;
    margin-bottom: 40px;
    font-size: 28px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: #fff;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

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

.faq-question h3 {
    color: #333;
    font-size: 18px;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    color: #ff6b9d;
    width: 30px;
    text-align: center;
    transition: transform 0.3s;
}

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

.faq-answer {
    background-color: #fff;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 1000px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.need-more-help {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 182, 193, 0.1), rgba(255, 105, 180, 0.1));
}

.help-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.help-content h2 {
    color: #ff6b9d;
    font-size: 32px;
    margin-bottom: 15px;
}

.help-content p {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-option {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-option h3 {
    color: #ff6b9d;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-option p {
    margin: 10px 0;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}