body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(circle, rgba(37, 37, 52, 0.8) 30%, rgba(17, 17, 28, 1) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
 
  .container {
    width: 80%;
    margin: 20px auto;
    color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .header {
    font-weight: bold;
    color: rgba(135, 139, 199);
    text-align: center;
    padding: 20px;
  }
  
  .header h1 {
    margin: 0;
    color: rgba(135, 139, 199);
    font-size: 2rem;
    font-weight: bold;
  }
  


  .content {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
  }
  
  .main-content {
    flex: 2;
    padding-right: 20px;
  }
  
  .section {
    margin-bottom: 20px;
    text-align: justify;
  }
  
  .section h2 {
    color: rgba(135, 139, 199);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .sidebar {
    flex: 1;
    padding: 20px;
    border-left: 2px solid #d7dce3;
  }
  
  .sidebar h3 {
    color: rgba(135, 139, 199);
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 10px;
  }
  
  .sidebar ul {
    list-style-type: disc;
    padding-left: 1px;
    font-size: 18px;
    text-align: justify;
  }
  
  .sidebar li {
    margin-bottom: 10px;
    list-style: none;
  }
  
  .declaration {
    display: flex; /* Asegura que el contenido pueda centrarse */
    flex-direction: column; /* Ordena los elementos verticalmente */
    align-items: center; /* Centra el contenido horizontalmente */
    justify-content: center; /* Centra el contenido verticalmente si es necesario */
    margin: 25px auto; /* Espaciado superior y centra horizontalmente */
    background-color: rgba(255, 255, 255, 0.1); /* Fondo translúcido */
    color: #ffffff; /* Texto blanco */
    padding: 20px; /* Espaciado interno */
    text-align: center; /* Centra el texto dentro del contenedor */
    border-radius: 8px; /* Bordes redondeados */
    max-width: 80%; /* Ancho máximo de la sección */
}

.declaration h2 {
    margin: 0 0 10px; /* Espaciado inferior */
    font-size: 20px; /* Ajusta el tamaño del texto */
}

.declaration p {
    margin: 5px 0; /* Espaciado entre párrafos */
    font-size: 16px; /* Ajusta el tamaño del texto */
    line-height: 1.5; /* Mejora la legibilidad */
}


.layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.card h2 {
    font-size: 2rem;
    margin: 10px 0;
}

.card p {
    font-size: 1rem;
}

.summary {
    background-color: rgba(206, 181, 221, 0.2);
    border: 2px solid #ad84c6;
    color: #ffffff;
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.summary h3 {
    font-size: 3rem;
    margin: 10px 0;
}

.summary p {
    font-size: 2rem;
    margin: 5px 0;
}
.highlight {
    color: rgba(135, 139, 199);
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
}