* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logos img {
    width: 150px;
    height: auto;
    margin: 0 10px;
}

h1 {
    color: #4CAF50; /* Verde basado en Natureco */
    margin-bottom: 20px;
    font-size: 24px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

a {
    color: #2196F3; /* Azul para los enlaces */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

hr {
    margin: 40px 0;
    border: 0;
    height: 1px;
    background: #ddd;
}

@media screen and (max-width: 600px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 20px;
    }

    p, ul li {
        font-size: 16px;
    }

    .logos img {
        width: 100px; /* Ajustamos el tamaño en pantallas pequeñas */
        margin: 0 5px;
    }
}
