* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f8f8;
  color: #222;
  line-height: 1.6;
  padding-top: 100px; /* To offset the fixed header */
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.top-header {
  background-color: #222;
  padding: 16px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo {
  font-size: 28px;
  font-weight: bold;
  color: #e67e22;
  white-space: nowrap;
}

/* Nav menu */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.navbar li a {
  color: #e67e22;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
  padding: 8px 12px;
}

.navbar li a:hover,
.navbar li a:focus {
  color: #fff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 868px) {
  .navbar ul {
    gap: 2px;
  }

  .navbar li a {
    font-size: 14px;
    padding: 6px 10px;
  }

  .logo {
    font-size: 24px;
  }
}


/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1581091870622-8d46c1e01b43') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333;
  padding: 0 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #333;
}

.cta-button {
  background-color: #e67e22;
  color: #333;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  transition: color 0.3s;
}

.cta-button:hover {
  background-color: #d35400;
}

/* Footer */
.footer {
  background-color: rgba(0,0,0,0);
  padding: 40px 20px;
  text-align: center;
  color: #333;
  border-top: 1px solid #eee;
}

.footer .social-links a {
  margin: 0 10px;
  font-size: 20px;
  color: #999;
  transition: color 0.3s;
}

.footer .social-links a:hover {
  color: #e67e22;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    align-items: center;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .hero h2 {
    font-size: 28px;
  }
}
