:root {
  --primary-color: #2563eb;
  --primary-gradient: linear-gradient(120deg, #2563eb, #00A63D);
  --text-color: #1f2937;
  --bg-color: #F5F8FC;
  --border-radius: 0.625rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.header {
  background-color: white;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.logo-icon {
  width: 50px; 
  height: 50px;
  margin-right: 0.5rem;
  object-fit: contain;
}

.main-content {
  max-width: 880px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

.badge {
  display: inline-block;
  background-color: #e0e7ff;
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: normal;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

.highlight {
  background: linear-gradient(90deg, #2563eb, #00A63D);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent
}

.subtitle {
  margin-bottom: 3rem;
  font-size: 1.2rem;
  color: #4b5563;
}


.section-description {
  margin: 0.5rem 0 1.5rem;
  font-size: 1.2rem;
  color: #4b5563;
}

.newsletter-subscribe-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  max-width: 28rem;
  margin-inline: auto;
}

.newsletter-subscribe-form input {
  padding: 0.8rem;
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.newsletter-subscribe-form button {
  font-size: medium;
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.newsletter-subscribe-form button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-20deg);
  animation: shine 2s infinite;
}

.newsletter-subscribe-form button:hover {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

.privacy-note {
  font-size: 0.8rem;
  color: #6b7280;
}

.features-section {
  margin-top: 2.5rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 3px 5px rgba(0,0,0,0.3);
}

.icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: white;
  background-color: #101827;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer nav {
  margin: 1rem 0;
}

.footer nav a {
  margin: 0 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    justify-self: center;
  }
  .header {
    padding: 1rem;
  }
  
  .main-content {
    padding: 2rem 1rem;
  }
  
  h1.title {
    font-size: 2rem;
  }
  
  h2.section-title {
    font-size: 1.5rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .newsletter-subscribe-form {
    flex-direction: column;
  }
  
  .newsletter-subscribe-form input {
    width: 100%;
  }
  
  .newsletter-subscribe-form button {
    width: 100%;
  }
  
  .features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-nav a {
    display: inline-block;
    margin: 0.25rem 0.5rem;
  }
}