body {
    background-color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    margin: 0;
    padding: 0;
}

/* Ajuste del contenedor */
.container {
    background-color: #f7f7f7;
    border-radius: 10px;
    margin: 40px auto; /* Reducir el margen superior e inferior */
    padding: 20px;
    max-width: 800px; /* Aumentar el ancho máximo */
    width: 90%; /* Hacer que el contenedor ocupe el 90% del ancho */
    box-sizing: border-box;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.5em; /* Aumentar el tamaño de fuente */
    text-align: center;
    margin-bottom: 20px;
}

p {
    font-size: 18px; /* Aumentar el tamaño de fuente */
    line-height: 1.6;
    margin-bottom: 20px;
}

p.quote {
    font-style: italic;
    text-align: center;
    font-size: 20px; /* Aumentar el tamaño de fuente */
}

.asterisk {
    color: #ff0000;
    font-weight: bold;
    margin-right: 5px;
    font-size: 1.2em; /* Ajustar el tamaño del asterisco */
}

strong {
    font-weight: bold;
}

a {
    color: #ff0000;
    text-decoration: underline;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px; /* Aumentar el tamaño de fuente */
}

a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/* Estilos para dispositivos móviles */
@media screen and (max-width: 600px) {
    .container {
        margin: 20px auto;
        padding: 15px;
        width: 95%; /* Ocupa el 95% del ancho */
    }

    h1 {
        font-size: 2em; /* Ajustar el tamaño de fuente */
    }

    p, a {
        font-size: 16px; /* Ajustar el tamaño de fuente */
    }

    p.quote {
        font-size: 18px;
    }

    .asterisk {
        font-size: 1em;
    }
}
  .button {
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            color: white;
            text-align: center;
            text-decoration: none;
            margin: 5px;
            border-radius: 5px;
        }

        .blue-button {
            background-color: blue;
        }

        .red-button {
            background-color: red;
        }

/* Envoltura responsiva para iframes */
.responsive-iframe {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ajusta según la proporción de aspecto */
    height: 0;
    overflow: hidden;
}

.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}