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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

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

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 24px;
  background-color: white;
  color: #007acc;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e6e6e6;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.5s;
}

.fade-in.delay-2 {
  animation-delay: 1s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* About Section */
.about-section {
  padding: 60px 20px;
  background-color: white;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-section p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

/* Footer */
.footer {
  background-color: #007acc;
  color: white;
  text-align: center;
  padding: 20px 10px;
}
