/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: #000000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.hero-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

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

.logo {
  max-width: 400px;
  width: 90%;
  height: auto;
  margin-bottom: 60px;
}

/* CTA Section */
.cta {
  margin-top: 0;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.cta-button:active {
  transform: scale(0.98);
}

/* Footer */
.footer {
  background: #000000;
  color: #fff;
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  max-width: 200px;
  height: auto;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    max-width: 320px;
    margin-bottom: 50px;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 15px;
  }

  .footer-logo {
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 260px;
    margin-bottom: 40px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .footer-logo {
    max-width: 140px;
  }
}
