/* FAQ Page Specific Styles */

/* FAQ Content */
.faq-content {
    margin-bottom: 60px;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.faq-category {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-top: 4px solid #35516d;
}

.faq-category h2 {
    color: #13263d;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f4;
}

.faq-item {
    margin-bottom: 25px;
    padding: 25px 20px 20px 20px;
    border-bottom: 1px solid #f1f3f4;
}

.faq-item:first-child {
    padding-top: 30px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 25px;
}

.faq-item h3 {
    color: #13263d;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Help Section */
.help-section {
    margin-top: 60px;
    margin-bottom: 40px;
}

.help-card {
    background: linear-gradient(135deg, #35516d, #899db1);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.help-card h2 {
    margin-bottom: 15px;
    font-size: 2rem;
    color: white;
}

.help-card p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.help-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #35516d;
    border-color: white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #35516d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-categories {
        gap: 30px;
    }
    
    .faq-category {
        padding: 30px 20px;
    }
    
    .faq-category h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .faq-item {
        padding: 20px 15px 15px 15px;
        margin-bottom: 20px;
    }
    
    .faq-item:first-child {
        padding-top: 25px;
    }
    
    .faq-item:last-child {
        padding-bottom: 20px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .help-card {
        padding: 30px 20px;
    }
    
    .help-card h2 {
        font-size: 1.5rem;
    }
    
    .help-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-category {
        padding: 20px 15px;
    }
    
    .faq-category h2 {
        font-size: 1.3rem;
    }
    
    .faq-item {
        padding: 18px 12px 15px 12px;
        margin-bottom: 18px;
    }
    
    .faq-item:first-child {
        padding-top: 22px;
    }
    
    .faq-item:last-child {
        padding-bottom: 18px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
    
    .help-card {
        padding: 25px 15px;
    }
    
    .help-card h2 {
        font-size: 1.3rem;
    }
    
    .help-card p {
        font-size: 1rem;
    }
}
