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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  line-height: 1.6;
}

/* Header */
header {
  padding: 20px 40px;
  text-align: left;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 120px 20px 100px;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInDown 1.2s ease;
}

.hero .tagline {
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.5s ease;
}

.highlight {
  color: #00b894;
  font-weight: 600;
}

.cta {
  display: inline-block;
  background: #00b894;
  color: #ffffff;
  padding: 14px 36px;
  font-size: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta:hover {
  background: #019874;
  transform: translateY(-3px);
}

/* About Section */
.about {
  background: rgba(255, 255, 255, 0.05);
  padding: 80px 20px;
  text-align: center;
}

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

.about p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 80px;
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
