.container {
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: white;
    /* Eliminar sombra y bordes */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    /* border-radius: 8px; */
}

.text-section {
    max-width: 50%;
}

.text-section h2 {
    color: #2d3192;
    font-size: 16px;
    margin: 0;
    font-weight: bold;
}

.text-section h1 {
    font-size: 36px;
    color: #212529;
    margin: 10px 0;
    font-weight: bold;
}

.text-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    font-size: 16px;
    color: #212529;
}

.features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features li::before {
    content: "✔️";
    color: #2d3192;
    margin-right: 10px;
}

.image-section {
    position: relative;
    max-width: 45%;
}

.image-section img {
    width: 100%;
    height: auto;
    /* Eliminar borde */
    /* border-radius: 8px; */
}

.sunat-button {
    display: inline-flex;
    align-items: center;
    background-color: #1e73be;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 20px;
}

.sunat-button img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

iframe {
    width: 100%;
    height: 70vh; /* Ajusta esta altura según tus necesidades, aquí está reducido a 70vh */
    border: none; /* Quitar el borde del iframe */
}