body {
    font-family: "Roboto Slab", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .container {
    width: 100%;
    max-width: 900px;
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 20px;
  }
  
  .section h1 {
    font-size: 2.2rem;
    color: #001c42;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .section h2 {
    font-size: 1.8rem;
    color: #001c42;
    margin-bottom: 20px;
  }
  
  .section h3 {
    font-size: 1.3rem;
    color: #001c42;
  }
  
  .subtitle{
    text-align: center;
    margin-top: -10px;
  }
 
  .pContainer {
    font-size: 1rem;
    color: #001c42;
    margin-bottom: 20px;
    text-align: justify;
  }
      
  .section-text {
    flex-direction: column;
    align-items: center;
  }
  
  .section-text section h1 {
    text-align: center;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }

  .logo:hover {
    cursor: pointer;
  }


  .logo img {
    max-height: 80px;
  }
  
  .header {
    background-color: #001c42;
    margin-top: -20px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2em 0;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  
  footer p {
    margin: 0;
    color: #fff;
  }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section {
      flex-direction: column;
      padding: 0px;
    }
  
    .logo img {
      max-height: 60px;
    }

    h1 {
      font-size: 1.8rem;
    }
  
    h2 {
      font-size: 1.3rem;
    }
  
    h3 {
      font-size: 1rem;
    }
  
    p {
      font-size: 0.9rem;
    }
  
    .dContainer {
      padding: 10px;
    }
  }
  
  .section-text,
  .section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    margin-bottom: 20px;
  }
  
  .section.appear,
  .section-text.appear,
  .section.section-text.appear {
    opacity: 1;
    transform: translateY(0);
  }
  
  .social-icons {
    display: flex;
    justify-content: center; /* Centrar los iconos horizontalmente */
    margin-bottom: 20px; /* Espacio inferior entre iconos y contenido */
  }
  
  .social-icon {
    display: inline-block;
    font-size: 24px; /* Tamaño de los iconos */
    margin: 0 10px; /* Espacio horizontal entre iconos */
    color: #333; /* Color de los iconos */
  }
  
  .social-icon:hover {
    color: #00bcd4; /* Cambia el color al pasar el ratón por encima */
  }