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

:root {
  --bg: #1A102A;
  --card-bg: #2A1F4D;
  --text: #e5e5e7;
  --gradient: linear-gradient(90deg, #f78da7, #5ec6ff);
}

* { box-sizing: border-box; }


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

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero {
  text-align: center;
  padding: 60px 24px;
}

.hero p {
  max-width: 600px;
  margin: 12px auto;
  color: var(--text);
}

.cta {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 14px 24px;
  margin-top: 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(247, 141, 167, 0.4);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(94, 198, 255, 0.6);
}

.cta.secondary {
  background: transparent;
  border: 2px solid transparent;
  border-image: var(--gradient) 1;
  color: #fff;
}

section {
  background: var(--card-bg);
  margin: 20px 0;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.features ul { padding-left: 20px; }

form input, form textarea {
  width: 100%;
  margin: 8px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #1f1636;
  color: #fff;
}

form button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.note {
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
  color: #cfcfd1;
}


.contact-info {
  color: var(--text);
}

.note:hover {
  color: var(--gradient);
}




.divider {
  border: 0;
  height: 2px;
  background: var(--gradient);
  margin-bottom: 16px;
}

.site-footer {
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-link {
  
  text-decoration: none;
}


.footer-link:hover {
  color: var(--gradient);
}

.logo {
  text-align: center;
  margin-bottom: 20px;
}
.logo img {
  max-width: 400px;
  height: auto ;
  display: inline-block;
}