/* Estilo General */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
    text-align: center;

    background-image: url('images/background-image.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

h1 {
    font-size: 32px;
    font-weight: bold;
    color: black;
    margin-top: 70px;
    margin-bottom: 10px;
}

/* Contenedor principal */
.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    gap: 30px;
}

/* Cada fila de preguntas */
.faq-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 20px;
}

/* Estilo de los cuadros */
.faq-box {
    width: 90%;
    max-width: 1200px;
    background: #e6e6fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilo de los títulos */
h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

h3 {
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

/* Diseño responsivo para móviles */
@media (max-width: 400px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 18px;
    }
    .faq-box {
        width: 95%;
    }
}
