/* Estilos generales para centrar el contenido */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contenedor, .cards-container {
    max-width: 1200px; /* Limitar el ancho máximo para centrarlos */
    margin: 0 auto; /* Centramos el contenedor */
    padding: 20px; /* Añadimos espacio interno para que no quede pegado a los bordes */
}

/* Estilos para las cards del contenedor */
.cards-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 20px;
    width: 48%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h4 {
    color: #0b3b59;
    font-weight: bold;
    margin-bottom: 15px;
}

.card p {
    text-align: justify;
    color: #212529;
    font-size: 1rem;
}

/* Estilos para la tabla */
.table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 10px;
    text-align: left;
    border: none;
    font-size: 1rem;
    color: #0b3b59;
}

.table th {
    font-weight: bold;
    text-transform: uppercase;
    color: #0b3b59;
}

.table td {
    color: #212529;
}

/* Estilos para los iconos de descarga */
.table .download-icon {
    font-size: 1.2rem;
    color: #0b3b59;
    transition: color 0.3s ease;
}

.table .download-icon:hover {
    color: #007bff;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background-color: #0b3b59;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-download:hover {
    background-color: #007bff;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }

    .table th, .table td {
        font-size: 0.9rem;
    }
}


.container {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 20px;
max-width: 1100px;
margin: 0 auto;
padding: 30px;

background-color: #f9f9f9;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Estilos para las columnas */
.column {
flex: 1;
}

/* Estilos para la columna izquierda (títulos y botón) */
.left-column {
display: flex;
flex-direction: column;
gap: 15px;
}

.title {
font-size: 2rem;
font-weight: 700;
color: #0b3b59;
margin-bottom: 10px;
}

.subtitle {
font-size: 1.5rem;
font-weight: 600;
color: #555;
}

.btn {
padding: 12px 25px;
font-size: 1.1rem;
color: #fff;
background-color: #0b3b59;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
width: max-content;
}

.btn:hover {
background-color: #08324b;
}

/* Estilos para la columna derecha (lista de puntos) */
.right-column {
display: flex;
flex-direction: column;
gap: 10px;
}

.list {
list-style-type: none;
padding-left: 0;
font-size: 1.1rem;
line-height: 1.6;
color: #333;
}

.list li {
margin-bottom: 10px;
}

.list li::before {
content: "•";
color: #0b3b59;
font-weight: bold;
margin-right: 8px;
}

/* Responsividad para dispositivos pequeños */
@media (max-width: 768px) {
.container {
flex-direction: column;
gap: 30px;
}

.left-column, .right-column {
flex: 1 1 100%;
}
}

