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

/* Global Styles */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: #f2f2f2;
  color: #333;
}

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

/* Navigation */
.navbar {
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar nav ul li a:hover {
  color: #ffd700;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 150px 0 100px; /* extra top padding to account for fixed navbar */
  text-align: center;
}

.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

/* Button colors */
.btn-primary {
  background: #ffd700;
  color: #333;
}

.btn-secondary {
  background: #fff;
  color: #2575fc;
}

.btn-tertiary {
  background: #2575fc;
  color: #fff;
}

/* Info Section */
.info {
  padding: 4rem 0;
  background: #fff;
}

.info .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.info-box {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
}

.info-box h3 {
  margin-bottom: 1rem;
  color: #2575fc;
}

.info-box p {
  font-size: 1rem;
  color: #666;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 1.5rem 0;
  text-align: center;
}

footer p {
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .info .container {
    flex-direction: column;
    align-items: center;
  }
}

