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

body {
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 100%);
  color: #232946;
  min-height: 100vh;
}
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(80, 112, 255, 0.07);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 24px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4f8cff 60%, #a259ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(80, 112, 255, 0.12);
}
.logo-text {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #4f8cff;
}
nav a {
  color: #4f8cff;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}
nav a:hover {
  color: #a259ff;
}
nav a:last-child {
  margin-right: 0;
}
nav a.active {
  color: #a259ff;
  text-decoration: underline;
}
main {
  max-width: 700px;
  margin: 3rem auto 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(80, 112, 255, 0.10);
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  position: relative;
}
.hero {
  text-align: center;
  padding-bottom: 2rem;
}
.hero-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
}
.hero h2 {
  margin-top: 0;
  color: #4f8cff;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}
.hero button {
  background: linear-gradient(90deg, #4f8cff 60%, #a259ff 100%);
  color: #fff;
  border: none;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(80, 112, 255, 0.10);
  transition: background 0.2s, transform 0.1s;
}
.hero button:hover {
  background: linear-gradient(90deg, #a259ff 60%, #4f8cff 100%);
  transform: translateY(-2px) scale(1.03);
}
.pricing {
  text-align: center;
  margin-top: 1.5rem;
}
.pricing-card {
  display: inline-block;
  background: linear-gradient(135deg, #f0f4ff 60%, #e0e7ff 100%);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(80, 112, 255, 0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  margin-top: 1.5rem;
  min-width: 320px;
}
.pricing h2 {
  color: #4f8cff;
  font-size: 2rem;
  font-weight: 800;
}
.price {
  font-size: 2.7rem;
  font-weight: 800;
  color: #a259ff;
  margin: 1.2rem 0 0.5rem 0;
}
.price span {
  font-size: 1.2rem;
  color: #555;
  font-weight: 600;
}
.pricing-card p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.subscribe-btn {
  background: linear-gradient(90deg, #4f8cff 60%, #a259ff 100%);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(80, 112, 255, 0.10);
  transition: background 0.2s, transform 0.1s;
}
.subscribe-btn:hover {
  background: linear-gradient(90deg, #a259ff 60%, #4f8cff 100%);
  transform: translateY(-2px) scale(1.03);
}
footer {
  text-align: center;
  padding: 1.2rem;
  color: #888;
  background: #f1f1f1;
  margin-top: 3rem;
  border-radius: 0 0 24px 24px;
  font-size: 1rem;
}

/* Contact form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto 0 auto;
}
.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border: 1.5px solid #e0e7ff;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #f8faff;
  resize: none;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #4f8cff;
  outline: none;
}
.contact-form button {
  align-self: flex-end;
}

@media (max-width: 800px) {
  main {
    padding: 1.5rem 0.5rem;
  }
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1rem;
  }
  nav a {
    margin-left: 1rem;
    font-size: 1rem;
  }
  .contact-form {
    max-width: 100%;
    padding: 0 0.5rem;
  }
} 