﻿/* Estilos para la página FAQ */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top:2%;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #3182ce;
    padding-bottom: 15px;
}

    .page-header h1 {
        color: #2c5282;
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .page-header h2 {
        color: #4a5568;
        font-size: 20px;
        font-weight: normal;
    }

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .faq-item h3 {
        color: #3182ce;
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .faq-item p {
        margin: 0;
        line-height: 1.6;
    }

/* Estilos responsivos */
@media (max-width: 768px) {
    .faq-container {
        padding: 20px 15px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header h2 {
        font-size: 18px;
    }

    .faq-item {
        padding: 15px;
    }

        .faq-item h3 {
            font-size: 16px;
        }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 24px;
    }

    .page-header h2 {
        font-size: 16px;
    }

    .faq-item h3 {
        font-size: 15px;
    }

    .faq-item p {
        font-size: 14px;
    }
}
