/* FAQ Pagina Styling */
.faq-page {
    background-color: #f8f9fa;
    padding: 60px 20px;
    min-height: 80vh;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
}

.faq-header p {
    color: #666;
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 25px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-top: 3px solid transparent; /* Voor een subtiel effect bij hover */
}

.faq-item:hover {
    transform: translateY(-5px);
    border-top: 3px solid #c0392b; /* Jouw rode kleur */
}

.faq-question {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.faq-question i {
    font-size: 1.5rem;
    color: #c0392b; /* Jouw rode kleur voor de iconen */
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    color: #555;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: #c0392b; /* Jouw rode kleur voor links */
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive voor mobiel */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h1 {
        font-size: 2rem;
    }
}