body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      background: #fff;
      color: #1f2937;
    }
textarea {
    font-family: 'Inter', sans-serif;
}
nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

button {
    cursor: pointer;
      border: none;
      font-size: initial;
}

nav a, nav button {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
}


header {
    background-color: #e5e7eb;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 1rem;
    max-width: 85%;
    margin: 2rem auto;
    min-height: calc(100vh - 290px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

    .badge {
      background: #d1fae5;
      color: #065f46;
      padding: 0.25rem 0.75rem;
      font-size: 0.875rem;
      border-radius: 9999px;
      display: inline-block;
      margin-bottom: 1rem;
    }

    header h1 {
      font-size: 4.75rem;
      font-weight: 800;
      margin: 0 0 1rem 0;
      color: #111827;
      cursor: default;
    }

    header p {
      font-size: 1.125rem;
      color: #6b7280;
      margin-bottom: 2rem;
      cursor: default;
    }

    .cta button {
      background: #111827;
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

section.features {
    display: flex;
    gap: 0;
    padding: 0rem 0rem;
    max-width: 1000px;
    margin: auto;
    margin-top: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    background: #fff;
    border-radius: 30px;
}

    .feature {
      /*background: white;*/
      border-radius: 1rem;
      padding: 2rem;
      /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);*/
      transition: transform 0.2s;
      text-align: center;
  position: relative;
  flex: 1;
  padding: 2rem;
  text-align: center;
  cursor: default;
}

.feature:first-child::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 0;
  height: 50%;
  width: 1px;
  background-color: #d1d5db;
}

.feature:last-child::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 0;
  height: 50%;
  width: 1px;
  background-color: #d1d5db;
}

    .feature:hover {
      transform: translateY(-5px);
    }

    .feature h3 {
      color: #1d4ed8;
      margin-bottom: 0.5rem;
    }

    footer {
      color: #d1d5db;
      text-align: center;
      padding: 2rem;
    }
    /* Modal Container */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content Box */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.3s ease-out;
}

/* Close Button */
.close {
  color: #aaa;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 28px;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* Contact Form Inputs */
.modal-content input,
.modal-content textarea {
  width: 90%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* Submit Button */
.modal-content button {
  background-color: #1d4ed8;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

/* Trigger Button */
.contact-button {
text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    border:none;
  cursor: pointer;
  font-size: initial;
}

.toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #10b981;
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  font-size: 1rem;
  transition: bottom 0.4s ease;
  z-index: 10000;
  pointer-events: none;
      text-align: center;
}

.toast.show {
  bottom: 2rem;
}

/* Fade Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
      .modal-content {
    padding: 1.5rem;
  }

  .modal-content input,
  .modal-content textarea {
    font-size: 1rem;
  }

  .modal-content button[type="submit"] {
    width: 100%;
    font-size: 1rem;
  }
  header {
      max-width: 80%;
  }
  header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  header p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .features {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .feature {
    border: none !important;
    padding: 1.5rem;
  }

  .feature::before,
  .feature::after {
    display: none !important;
  }

  nav {
    flex-direction: row;
    gap: 0.5rem;
    padding: 1rem;
  }

  nav button {
        /*width: 135px;*/
        justify-content: center;
        margin: auto;
    
  }
  
  .cta button {
      margin-bottom: 25px;
  }

  .modal-content {
    width: 85%;
    margin: 20% auto;
    padding: 1.5rem;
  }

  .modal-content input,
  .modal-content textarea {
    width: 93%;
  }

  .toast {
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
  }
}