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

body {
  background: #ffffff;
  color: #ffffff;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #fbefff, #9200be);
  padding: 20px 8%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
}

.logo img {
  height: 36px;
  width: auto;
}

.menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.menu a {
  color: #f8fafc;
  text-decoration: none;
  transition: 0.3s;
}

.menu a:hover {
  color: #ffffff;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  gap: 40px;
  flex-wrap: wrap;

  background-image: url("hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #000000;
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  background: #8B298E;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #5c0076;
  transform: translateY(-2px);
}

.hero-card {
  flex: 1;
  min-width: 280px;
  background: #a24ea500;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
}

.hero-card h3 {
  margin-bottom: 15px;
  color: #c300ff;
}

.hero-card p {
  color: #1a1a1a;
}

section {
  padding: 10px 8%;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: black
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  column-gap: 12px;
  row-gap: 8px;
}

.cards p {
  color: rgb(0, 0, 0);
}

.card {
  background: #F0D0F1;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #750097;
}

.card h3 {
  margin-bottom: 12px;
  color: #750097;
}

.features {
  padding-left: 20px;
  margin-top: 10px;
}

.features li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

.numbers p {
  color: black;
}

.number-box {
  background: #F0D0F1;
  padding: 30px 20px;
  border-radius: 14px;
}

.number-box h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: #750097;
  margin-bottom: 8px;
  line-height: 1.2;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

form {
  background: #F0D0F1;
  padding: 25px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #ffffff;
  color: #1a1a1a;
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button {
  padding: 14px;
  background: #8B298E;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #5c0076;
}

.contact-info {
  background: #F0D0F1;
  padding: 25px;
  border-radius: 14px;
}

.contact-info p {
  margin-bottom: 15px;
  color: #6b7280;
}

footer {
  text-align: center;
  padding: 25px;
  background: #020617;
  color: #64748b;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    background-image: url("hero-bg-mobile.png");
    background-position: center;
    padding: 40px 6%; 
    min-height: 40vh;
  }

  

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  nav {
    flex-direction: column;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}