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

/* Body Style */
body {
  background-color: #f8f9fa;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #212529;
  text-align: center;
}

/* Navigation Style */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5rem;
  background-color: #f8f9fa;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

nav .logo a {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #212529;
  text-decoration: none;
}

nav .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40%;
}

nav .nav-links li {
  list-style: none;
}

nav .nav-links li a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

nav .nav-links li a:hover {
  background-color: #007bff;
  color: #fff;
}

/* Hero Section Style */
.hero-text {
  margin-top: 7rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #212529;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.hero-text p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.hero-text button {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #007bff;
  border: none;
  padding: 0.75rem 2.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-text button:hover {
  background-color: #0062cc;
}
