body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #c6cccf, #d6e9f7);
    color: #333;
}
header {
    background: #2e3643;
    color: #fff;
    padding: 30px 15px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1.5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
section {
    background: #ffffff;
    padding: 20px;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
section:hover {
    transform: scale(1.02);
}
h2 {
    color: #0056b3;
    border-bottom: 3px solid #007acc;
    padding-bottom: 8px;
    font-size: 22px;
    text-align: center;
}
p {
    font-size: 17px;
    line-height: 1.6;
    font-style: italic;
}
li {
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   font-size: 18px;
}
.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.benefit {
    background: #e3f2fd;
    padding: 15px;
    flex: 1;
    min-width: 250px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    transition: 0.3s;
}
.benefit:hover {
    background: #bbdefb;
}
img {
    width: 50%;
    max-width: 300px;
    display: block;
    margin: 15px auto;
    border-radius: 8px;
}
.back-to-top {
    text-align: center;
    margin-top: 40px;
}
.button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}
footer {
    text-align: center;
    background-color: white;
    position: static;
    bottom: 0;
    width: 100%;
    height: 4.8rem;
    grid-row-start: 4;
    margin-top: 5%;
}
footer p {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    color: rgb(0, 0, 0);
    font-family: Arial, sans-serif;
    font-style: normal;
}
footer img {
    object-fit: cover;
    height: auto;
    max-width: 30%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 480px) {
    section {
        max-width: 310px;
    }
    footer img {
        content: url("../footer-mob.webp");
        width: 100%; /* Expande la imagen a todo el ancho del footer */
        background-color: white; /* Asegura que el fondo de la imagen sea blanco */
        border: none; /* Asegura que no haya bordes */
        max-width: 100%;
    }

    footer {
        text-align: center;
        background-color: white; /* Fondo blanco para el footer */
        bottom: 0;
        width: 100%;
        height: 6rem; /* Altura del footer */
        position: static;
        box-shadow: none; /* Asegura que no haya sombras en el footer */
        padding-bottom: 8px;
        margin-top: 15%;
    }
    img {
        width: 100%; /* Asegura que la imagen ocupe el 100% del ancho */
        margin: 0 auto; /* Elimina cualquier margen extra */
        display: block;
        box-shadow: none; /* Elimina sombras en las imágenes */
        border-radius: 0; /* Elimina bordes redondeados */
    }
}