body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: #333;
}
.container {
    width: 75%;
    margin: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 10px;
    margin-top: 20px;
    min-height: 85vh;
    max-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.no-break {
    page-break-inside: avoid;
}
header {
    text-align: center;
}
.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
header h1 {
    font-size: 4em;
    margin: 0;
}
.logo {
    width: auto;
    height: 6em; /* Ajustar altura según necesites */
    margin-left: 10px;
    background: none; /* Asegúrate de que el fondo sea transparente */
}
header p {
    font-size: 1.5em;
    margin: 10px 0 0;
}
section {
    margin: 20px 0;
}
section h2 {
    font-size: 2em;
    border-bottom: 2px solid #0072ff;
    padding-bottom: 10px;
}
.feature {
    margin: 5px 0;
    padding: 10px 20px; /* Ajuste del padding superior */
    border: 2px solid #00aaff;
    border-radius: 15px;
    background: linear-gradient(145deg, #f0f4f8, #d9e2ec);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    transition: transform 0.3s;
}
.feature:hover {
    transform: translateY(-10px);
}
.feature h3 {
    font-size: 1.2em; /* Reducción del tamaño del título */
    margin-bottom: 10px;
    color: #0072ff;
}
.feature p {
    font-size: 1.1em;
    margin-bottom: 0;
    color: #555;
}
.features-container .feature.full-width {
    flex: 1 1 100%;
}
.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.features-container .feature {
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
}
.full-width {
    width: 100%;
}
.footer {
    text-align: center;
    padding: 10px; /* Ajusta el padding para hacer espacio para el contenido adicional */
    background: #0072ff;
    color: white;
    border-radius: 0 0 10px 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}
.footer a {
    color: white; /* Asegura que los enlaces en la barra inferior sean visibles */
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.cover-page {
    text-align: center;
    justify-content: center;
}
.description-page section {
    font-size: 1.4em; /* Slightly smaller font size */
    line-height: 1.6;
}
.features-page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto; /* Adjust height to fit content */
}
.video-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}
video {
    width: 100%;
    max-width: 800px;
    max-height: 70vh;
    border: 2px solid #0072ff;
    border-radius: 10px;
}
