/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background: #222;
  padding: 1em;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2em;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5em;
  color: #fff;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 2em 1em;
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

section {
  padding: 2em 1em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
  gap: 1em;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5em;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.contact-form button {
  padding: 0.7em;
  background: #222;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.contact-form button:hover {
  background: #444;
}

footer {
  text-align: center;
  padding: 1em;
  background: #f4f4f4;
  margin-top: 2em;
}

/* Tablet Styles */
/* @media (max-width: 1024px) {
  .nav-links {
    gap: 1em;
  }
} */

/* Mobile Styles */
/* @media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1em;
    background: #333;
    padding: 1em;
    position: absolute;
    top: 60px;
    right: 10px;
    border-radius: 6px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    color: #fff;
  }
} */
