  /*******************************************/
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Inter', sans-serif;
  }

  .section-text {
      padding-top: 10px;
      font-size: 24px;
      font-family: 'Inter', sans-serif;
      color: black;
      text-align: start;
  }

  .section-subtext {
      font-size: 18px;
      color: black;
      text-align: start;
      padding-bottom: 5px;
  }

  .cascade-section {
      opacity: 0;
      transform: translateY(60px);
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: opacity, transform;
  }

  .cascade-section.cascade-visible {
      opacity: 1;
      transform: translateY(0);
  }

  /*******************************************/
  .testimonial-section {
      display: flex;
      padding: 20px;
      background-color: #f6f6f6;
      font-family: Arial, sans-serif;
      justify-content: center;
      align-items: center;
      text-align: center;
  }

  .testimonial-container {
      display: flex;
      flex-wrap: wrap;
      width: 80%;
      justify-content: center;
      background: #ffffff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .testimonial-left,
  .testimonial-right {
      flex: 1 1 45%;
      margin: 10px;
  }

  .testimonial-left h4 {
      color: #5a5a9a;
      margin-bottom: 10px;
  }

  .google-reviews {
      font-weight: bold;
      font-size: 20px;
      margin: 10px 0;
  }

  .description {
      margin-top: 10px;
      color: #555;
  }

  .stars {
      color: #facc15;
      font-size: 24px;
  }

  .quote {
      font-style: italic;
      margin: 20px 0;
  }

  .name {
      font-size: 18px;
      font-weight: bold;
  }

  .country {
      font-size: 16px;
      color: #888;
  }

  .testimonial-right {
      position: relative;
      height: 240px;
      overflow: hidden;
  }

  .testimonial-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
  }

  .testimonial-slide.active {
      opacity: 1;
  }

  .testimonial-navigation {
      display: flex;
      justify-content: center;
      margin-top: 20px;
  }

  .nav-button {
      background-color: #e3e7f0;
      border: none;
      padding: 10px 15px;
      margin: 0 5px;
      font-size: 18px;
      cursor: pointer;
      border-radius: 8px;
      transition: background-color 0.3s;
  }

  .nav-button:hover {
      background-color: #d1d8e3;
  }



  /*******************************************/
  .faq-section {
      padding: 20px;
      background-color: #f6f6f6 !important;
      ;
      font-family: Arial, sans-serif;
  }

  .faq-container {
      max-width: 100%;
      margin: 0 auto;
  }

  .accordion {
      background-color: #e3e7f0;
      color: black;
      cursor: pointer;
      padding: 18px;
      width: 100%;
      border: none;
      text-align: left;
      outline: none;
      font-size: 24px;
      transition: 0.3s;
      border-radius: 8px;
      margin-bottom: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .accordion:hover {
      background-color: #d1d8e3;
  }

  .arrow {
      font-size: 20px;
      transition: transform 0.3s;
  }

  .panel {
      padding: 0 18px;
      display: none;
      background-color: #f9f9f9;
      overflow: hidden;
      font-size: 18px;
  }

  .panel p {
      padding: 10px 0;
      color: black;
  }

  /* Rotar la flecha hacia la derecha cuando se expande */
  .accordion.active .arrow {
      transform: rotate(90deg);
      /* Rotar la flecha cuando está expandido */
  }

  /*******************************************/
  .form-container {
      display: flex;
      text-align: start;
      background-color: #fff;
      padding-top: 30px;
      padding-bottom: 30px;
      padding-left: 20px;
      padding-right: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      width: 100%;
  }

  .form-group {
      margin-bottom: 20px;
  }

  label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: #555;
  }

  label.required::after {
      content: '*';
      color: #e53e3e;
      margin-left: 4px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-sizing: border-box;
      font-size: 16px;
  }

  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  textarea:focus {
      outline: none;
      border-color: #219ebc;
      box-shadow: 0 0 0 2px rgba(33, 158, 188, 0.2);
  }

  textarea {
      resize: vertical;
      min-height: 100px;
  }

  .radio-group {
      margin-top: 10px;
  }

  .radio-group label {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      cursor: pointer;
  }

  input[type="radio"] {
      margin-right: 10px;
      appearance: none;
      width: 18px;
      height: 18px;
      border: 2px solid #ccc;
      border-radius: 50%;
      transition: all 0.2s;
  }

  input[type="radio"]:checked {
      background-color: #219ebc;
      border-color: #219ebc;
  }

  input[type="radio"]:checked::after {
      content: '';
      display: block;
      width: 8px;
      height: 8px;
      background-color: #fff;
      border-radius: 50%;
      margin: 3px;
  }

  .privacy-policy {
      margin-top: 30px;
      margin-bottom: 30px;
  }

  .privacy-policy label {
      display: flex;
      align-items: flex-start;
      font-size: 14px;
      line-height: 1.5;
  }

  .privacy-policy input[type="checkbox"] {
      margin-top: 4px;
      margin-right: 12px;
      width: 20px;
      height: 20px;
  }

  .submit-btn {
      width: 100%;
      padding: 15px;
      background-color: #219ebc;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
  }

  .submit-btn:hover {
      background-color: #1a7b97;
  }

  .error-message {
      color: #e53e3e;
      font-size: 14px;
      margin-top: 5px;
  }

  /*******************************************/
  .bg-dark-blue {
      background-color: #002244;
      /* Color de fondo del footer */
  }

  .text-light-blue {
      color: #219ebc;
      /* Color para los enlaces al pasar el mouse */
  }

  .grid {
      display: grid;
  }

  /* Ajustes para vista móvil */
  @media (max-width: 768px) {

      /*******************************************/
      .testimonial-container {
          flex-direction: row;
          padding: 20px;
          width: 100%;

      }

      .testimonial-left,
      .testimonial-right {
          flex: 1 1 100%;
          margin: 0 0 20px 0;
      }

      .google-reviews {
          font-size: 18px;
      }

      .description {
          font-size: 16px;
      }

      .stars {
          font-size: 20px;
      }

      .quote {
          font-size: 16px;
      }

      .name {
          font-size: 16px;
      }

      .country {
          font-size: 14px;
      }

      .nav-button {
          font-size: 16px;
          padding: 8px 12px;
      }

      /*******************************************/
      .accordion {
          font-size: 18px;
          /* Reducir tamaño de la fuente en vista móvil */
      }

      .panel {
          border-left: 2px solid #ccc;
          border-right: 2px solid #ccc;
      }

      .panel p {
          font-size: 18px;
          /* También reducir tamaño del texto de la respuesta */
      }

      .arrow {
          font-size: 18px;
          /* Reducir tamaño de la flecha */
      }

      /*******************************************/
      .md:grid-cols-3 {
          grid-template-columns: repeat(3, minmax(0, 1fr));
      }
  }