/* Reset and Basic Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Fredoka One", cursive, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff0f5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

/* Header */
header {
  background: #ffb6c1;
  padding: 20px 0;
  text-align: center;
}

.logo {
  font-size: 48px;
  color: #ff1493;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: #ffc0cb;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.hero h2 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ff69b4;
  color: #fff;
  font-size: 24px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
}

.cta-button:hover {
  background: #ff1493;
  transform: scale(1.05);
}

/* Features Section */
#features {
  padding: 60px 0;
  background-color: #fff0f5;
}

#features h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
  color: #ff1493;
}

.features-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature-item {
  flex-basis: 28%;
  background: #ffe4e1;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-item h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #db7093;
}

.feature-item p {
  font-size: 18px;
  color: #333;
}

/* Signup Section */
#signup {
  background: #ffb6c1;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

#signup h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

#signup .cta-button {
  background: #ff69b4;
}

#signup .cta-button:hover {
  background: #ff1493;
}

/* Footer */
footer {
  background: #ffc0cb;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer p {
  font-size: 16px;
}

/* Media Queries */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    flex-basis: 80%;
  }

  .hero h2 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  #signup h2 {
    font-size: 32px;
  }
}
