/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

header {
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-in-out;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  color: #666;
}

/* Coming Soon Section */
.coming-soon {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-in-out;
}

.coming-soon h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.coming-soon p {
  font-size: 1.1rem;
  color: #666;
}

/* About Us Section */
.about-us {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  animation: fadeInUp 1.5s ease-in-out;
}

.about-us h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.about-us p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #666;
  animation: fadeIn 2s ease-in-out;
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Hover Effects */
.coming-soon:hover, .about-us:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .coming-soon h2,
  .about-us h2 {
    font-size: 1.5rem;
  }

  .coming-soon p,
  .about-us p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.8rem;
  }

  header p {
    font-size: 0.9rem;
  }

  .coming-soon h2,
  .about-us h2 {
    font-size: 1.3rem;
  }

  .coming-soon p,
  .about-us p {
    font-size: 0.9rem;
  }
}