/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk";
}

body {
  background-color: #111;
  color: #fff;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #222;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f7931a;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f7931a;
}

.cta-button {
  background-color: #f7931a;
  color: #111;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  margin-top: 80px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-text p {
  margin: 15px 0;
  font-size: 1.1rem;
  color: #ccc;
}

.buttons {
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.primary {
  background-color: #f7931a;
  color: #111;
}

.secondary {
  background-color: transparent;
  border: 2px solid #f7931a;
  color: #f7931a;
  margin-left: 10px;
}

/* Hero Image */
.hero-image img {
  max-width: 400px;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 15px;
  }

  .nav-links {
    margin-top: 10px;
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image {
    margin-top: 20px;
  }
}
