body {
    /* Estilo general de toda la página */
    margin: 0;
    padding: 0;
    font-family: Verdana, sans-serif;
    background-color: #eeeeee;
    min-height: 100vh;
}

/* Estilo del contenedor con la información */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    /* Añadido un padding mayor para margen interno */
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
    text-align: justify;
    /* Texto justificado */
}

.container h1,
.container h3 {
    /* Específico para los títulos dentro del contenedor */
    color: #333;
    margin-top: 4%;
    /* Margen superior */
    margin-bottom: 2%;
    /* Margen inferior */
}

p {
    /* Estilo del texto de información */
    color: #555;
    line-height: 1.8;
    /* Incrementa la legibilidad */
    margin-bottom: 15px;
    /* Añade espacio inferior entre párrafos */
}

ul {
    color: #555;
    line-height: 1.6;
    margin-left: 20px;
    /* Espaciado de listas */
}

/* Estilos de los títulos en bltContent */
#bltContent h5 {
    margin-top: 2%;
    /* Margen superior */
    margin-bottom: 1%;
    /* Margen inferior */
    color: #333;
    /* Asegurar que el color sea consistente */
}

/* Back Button - Circular Style */
.back {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1000;
}

.back a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #4285f4;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease;
    text-decoration: none;
}

.back a:active {
    transform: scale(0.95);
}

.backbtn {
    width: 50%;
    height: 50%;
    filter: brightness(0) invert(1);
}

/* Botón de contactar - Pill Shape */
#contactBtn {
    display: inline-block;
    margin: 20px auto 0 auto;
    padding: 12px 35px;
    background-color: #4285f4;
    color: #fff;
    font-family: Verdana, sans-serif;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.1s ease, background-color 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#contactBtn:hover {
    background-color: #3367d6;
}

#contactBtn:active {
    transform: scale(0.98);
}

/* Alinear el botón de contactar al centro */
.container #contactBtn {
    display: block;
    /* Hacerlo bloque para usar margin auto */
    text-align: center;
    margin: 30px auto;
    /* Centrar horizontalmente */
}

/* Ajustes para asegurar que el texto y elementos tengan espacio */
.container * {
    margin: 0;
    /* Eliminamos márgenes predefinidos */
    padding: 2;
    box-sizing: border-box;
}

/* Funding Section */
#fundingSection {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

#fundingText {
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.funding-logos {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}