body {
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.image-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: start; /* Center vertically */
  height: 100%; /* Ensure the container takes full height */
}

.faq-container {
  max-width: 800px;
  margin: 10px auto 0 auto;
  padding: 1rem;
}
.faq-container h2 {
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: #364f6b;
}
details {
  background-color: #f6f8fa;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #d8e0e9;
  color: #364f6b;
  position: relative;
}
details summary {
  font-weight: 400;
  font-size: 1.25rem;
  padding: 1rem;
  cursor: pointer;
  list-style: none;
}
details p {
  padding: 1rem;
  margin: 0 1rem 1rem 1rem;
  background: #f6f8fa;
  border-left: 2px solid #364f6b;
}

details:hover,
details[open] {
  box-shadow: 5px 5px 15px #d9d9d9;
}

details[open] {
  background: #ffffff;
}

details[open] summary {
  font-weight: 600;
}

details summary::before {
  position: absolute;
  content: "+";
  font-size: 1.75rem;
  top: 10px;
  right: 16px;
}

details[open] summary::before {
  -webkit-animation: rotate 0.6s ease-in-out both;
  animation: rotate-emoji 0.6s ease-in-out both;
}





@media screen and (min-width: 601px) {
  .container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: start; /* Center vertically */
    height: 100%; /* Ensure the container takes full height */
    width: 100%;  
  }

  .bloque1{
    border-radius: 20px;
    text-align: center;
    padding: 20px;
    margin: auto;
    margin-top: 50px;
    width: 400px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .bloque2 {
    margin: 10px; /* Añadir margen de 10px entre bloques */
    border-radius: 20px;
    text-align: center;
    padding: 20px;
    
    margin-top: 50px;
    width: 400px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .bloque3 {
    margin: 10px; /* Añadir margen de 10px entre bloques */
    border-radius: 20px;
    border: 0px;
    text-align: center;
    padding: 20px;
    
    margin-top: 50px;
    width: 400px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .form2 {
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 400px;
    margin: auto;
    margin-top: 50px;
    
  }
  
  .form2 input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px; /* Espaciado pequeño entre campos */  
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .form2 button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .form2 button:hover {
    background-color: #0056b3;
  }
  
}

@media screen and (max-width: 600px) {
  .container {  
  justify-content: center; /* Center horizontally */
  align-items: start; /* Center vertically */
  height: 100%; 
  }

  .bloque1{
    border-radius: 20px;
    text-align: center;
    padding: 20px;
    margin: 10px;
    margin-top: 50px;
    width: auto;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .bloque2 {
    margin: 5px; /* Añadir margen de 10px entre bloques */
    border-radius: 20px;
    text-align: center;
    padding: 20px;
    
    margin-top: 50px;
    width: auto;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .form2 {
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: auto;
    margin: auto;
    margin-top: 50px;
    
  }
  
  .form2 input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px; /* Espaciado pequeño entre campos */  
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .form2 button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .form2 button:hover {
    background-color: #0056b3;
  }
}
