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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #1d1d1d;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

nav .logo {
  color: #FF4081;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav .nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-left: 20px;
  transition: color 0.3s ease;
}

nav .nav-links a:hover {
  color: #FF80AB;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #4D1F6D, #FF4081);
  color: #fff;
  padding: 150px 20px;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.cta-button {
  background-color: #FF4081;
  color: #fff;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #FF80AB;
}

/* Features Section */
.features {
  padding: 100px 20px;
  background-color: #1d1d1d;
  text-align: center;
}

.features h2 {
  font-size: 48px;
  margin-bottom: 50px;
  color: #fff;
  font-weight: 600;
}

.features .feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.features .card {
  background-color: #2c2c2c;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.features .card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #FF4081;
}

.features .card p {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Contact Section */
#contact {
  background-color: #2c2c2c;
  padding: 50px 20px;
  text-align: center;
}

#contact h2 {
  font-size: 48px;
  color: #FF4081;
  margin-bottom: 20px;
}

#contact p {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

#contact a {
  color: #FF4081;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#contact a:hover {
  color: #FF80AB;
}

/* Footer Section */
.footer {
  background-color: #1d1d1d;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.footer a {
  color: #FFEB3B;
  text-decoration: none;
  font-size: 16px;
  margin: 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #FF80AB;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }

  .cta-button {
    font-size: 18px;
    padding: 12px 30px;
  }
}