body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: Arial, sans-serif;
}

.banner {
    background-color: grey;
    color: white;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner img.logo {
    width: 40px;
    height: auto;
}

.banner h1, .banner h2 {
    color: white;
    margin: 0;
}

.full-width {
    width: 100%;
    height: auto;
    display: block;
}

.content {
    text-align: center;
    background-color: white;
    padding: 20px;
    color: #333;
}

h1.super-title {
    font-size: 64px; /* Super título más grande */
}

h2, h3 {
    color: black;
}

h2 {
    font-size: 48px; /* Doble de tamaño */
}

h3 {
    font-size: 28px; /* Algo más grande */
}

.subsection-text {
    font-size: 24px; /* Tamaño reducido para los tres párrafos después del super título */
}

.left-align {
    text-align: left; /* Alineación a la izquierda para textos especificados */
}

.indent {
    margin-left: 15ch; /* Margen de 15 caracteres a la derecha */
}

strong {
    font-weight: bold;
}

section {
    border-top: 20px solid rgba(128, 128, 128, 0.5); /* Degrade gris oscuro */
}

.contact-section {
    background-color: grey;
    color: white;
    padding: 20px;
}

.column {
    display: inline-block;
    width: 45%;
    vertical-align: top;
    margin: 0 2.5%;
}

 .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh; /* Ajusta según sea necesario */
}


 .logo {
            max-width: 100%; /* Ajusta el tamaño según sea necesario */
            height: auto;
	    align-items: center;
}

.video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            max-width: 100%;
            background: #000;
}


.video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
}


/* Quita las viñetas de las listas */
ul.no-bullets {
    list-style-type: none; /* Quita las viñetas */
    padding: 0; /* Elimina el padding por defecto */
}

ul.no-bullets li {
    margin-left: 0; /* Asegura que no haya indentación */
}

@media (max-width: 768px) {
    h2 {
        font-size: 36px; /* Menor tamaño para títulos en dispositivos pequeños */
    }

    h3 {
        font-size: 24px; /* Menor tamaño para subtítulos */
    }

    .content {
        padding: 10px;
    }

    .column {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 28px; /* Aún menor para teléfonos móviles */
    }

    h3 {
        font-size: 20px;
    }

    .content {
        padding: 5px;
    }
}

