.container {
    position:relative;
    display:block;    
    border-radius: 23px;   
    padding-top:10px; 
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 10px;
    text-align:center;
    background-color: #00ba9c; 
    border-width:0 
}
body {
    display:block; 
    position:relative;
    border: 12px solid rgba(39,49,111,1);
    border-radius: 35px;
    font-family: martel;
    
}
h1 {
    text-align: center;
    font-family: martel;
    font-size: 16px;
    font-weight: bold;
    color: white;
    
    
}

p {
    text-align: justify;
    color: white;
    font-size: 12px;
}

 /* Estilo de los títulos */
 .titulo-expandible {
    cursor: pointer;
    color: blue; /* Puedes personalizar el color del título */
    text-decoration: underline; /* Subrayado para indicar que es un enlace */
  }

  /* Estilo inicial de los párrafos */
  .parrafo-expandible {
    max-height: 50px; /* Altura máxima inicial */
    overflow: hidden;
    transition: max-height 0.5s; /* Transición suave */
  }

  /* Estilo para cuando se expanden los párrafos */
  .parrafo-expandible.expandido {
    max-height: 850px; /* Altura máxima cuando está expandido */
  }