/* Global Styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Navbar Styles */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #333;
  color: #fff;
  width: 100%;
  height: 75px;
}

.logo {
  margin-right: 20px;
}

.logo img {
  width: 100px;
  height: 80px;
  
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-right: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ccc;
}

 
@media (min-width: 1200px) {
  .navbar {
    padding: 1.5rem 3rem;
  }
  .nav-links {
    font-size: 18px;
  }
}

/* For tablet screens */
@media (min-width: 768px) and (max-width: 1199px) {
  .navbar {
    padding: 1.2rem 2.5rem;
    justify-content: space-between;
  }
  .nav-links {
    font-size: 16px;
  }
}

/* For mobile screens */
@media (max-width: 767px) {
  .navbar {
    padding: 1rem 2rem;
    justify-content: space-between;
  }
  .nav-links {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
  }
  .nav-links li {
    margin-right: 0;
    margin-bottom: 10px;
    font-weight: 600;
  }
  .nav-links a {
    font-size: 14px;
  }

  .logo img {
    margin-left: 10px;
  }
}