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

body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo img {
  height: 40px;
}

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

.nav-list li a {
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: #2a83f9;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  background-color: #333;
  height: 3px;
  width: 25px;
  margin: 3px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }
}

/* Hero Section */
.hero {
  height: 50vh;
  background: url('hero-image.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
}

.hero h2 {
  font-size: 2rem;
  color: #2a83f9;
}

/* Main Content */
main {
  padding: 20px;
}

main h1,
main h2 {
  margin-bottom: 10px;
  color: #2a83f9;
}

main p {
  margin-bottom: 15px;
}

main ul {
  margin-bottom: 20px;
}

main ul li {
  margin-left: 20px;
  list-style: disc;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background-color: #2a83f9;
  color: #fff;
}
