
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}

@keyframes gradientBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.announcement-banner {
  background: linear-gradient(-45deg, #0046aa, #0066ff, #1a75ff, #3385ff);
  background-size: 400% 400%;
  animation: gradientBg 15s ease infinite, slideDown 0.5s ease-out;
  color: white;
  text-align: center;
  padding: 1.5rem;
  border-bottom: 1px solid #0046aa;
  box-shadow: 0 4px 15px rgba(0,70,170,0.3);
}

.announcement-banner h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.announcement-banner p {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.announcement-banner .banner-tagline {
  font-style: italic;
  opacity: 0.9;
  margin-top: 0.5rem;
}

.banner-actions {
  margin-top: 1rem;
}

.banner-actions p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.banner-button {
  background: white;
  color: #002856;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  background: #f8f9fa;
}

.banner-button:active {
  transform: translateY(0);
}

body {
  margin: 0;
  background-color: #fff;
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #002856;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #002856;
  font-weight: 500;
}

.try-button {
  background: #002856;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 5%;
  background: linear-gradient(135deg, #003d7a, #002856);
  color: white;
  gap: 2rem;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: left;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-button {
  background: #fff;
  color: #002856;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.features {
  padding: 5rem 5%;
}

.features-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.features-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #002856;
}

.features-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #636e72;
}

.coming-soon {
  padding: 5rem 5%;
  background: #f8f9fa;
  text-align: center;
}

.coming-soon h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #002856;
}

.coming-soon p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #636e72;
  font-size: 1.2rem;
  line-height: 1.6;
}

.notify-button {
  background: #002856;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.notify-button:hover {
  transform: translateY(-2px);
}

.contact {
  padding: 5rem 5%;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #002856;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-button {
  background: #002856;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.feature-card h3 {
  color: #002856;
  margin-bottom: 1rem;
}

.hipaa-section {
  text-align: center;
  padding: 3rem 1rem;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.hipaa-badge {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

.hipaa-section p {
  color: #002856;
  margin: 0.5rem 0;
}

.hipaa-section p:first-of-type {
  font-weight: 600;
  font-size: 1.2rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #002856;
  color: white;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  height: 80%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
}

.form-container {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    flex-direction: column;
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero p {
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .modal-content {
    width: 95%;
    height: 85%;
    margin: 10% auto;
  }
}
