/* Importar fuente Poppins desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo general */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: white;
}

section {
    padding: 20px;
    background-color: white;
}

section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #108f30;
    /* Verde para resaltar */
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1), 0 0 25px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1);
    /* Sombra sutil para darle profundidad */
}

/* Estilo para "Euro Gas" */
.euro-gas {
    color: #2e6cc4;
    /* Color diferente para Euro Gas */
    font-weight: 600;
    /* Negrita para destacar */
}

article {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    background-color:#f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 2px 5px rgba(0, 0, 0, 0.15);
}

article img {
    width: 50%;
    /* Imagen ocupa la mitad del ancho */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

article div {
    width: 50%;
    /* Texto ocupa la otra mitad */
    padding: 0 20px;
}

article h2 {
    color: #108f30;
    margin: 0 0 10px;
    font-size: 2rem;
}

article p {
    color: #333;
    font-size: 1.5rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    article {
        flex-direction: column;
        /* Apilar elementos en pantallas pequeñas */
    }

    article img,
    article div {
        width: 100%;
        /* Ocupan todo el ancho en dispositivos pequeños */
    }

    article div {
        padding: 10px 0;
    }
}