* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: url('contact-img.jpg') no-repeat center center/cover;
  color: #fff;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: rgb(255, 255, 255);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a.active {
  color: yellow;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 50px 20px;
  gap: 20px;
}

.left-box,
.form-box,
.right-box {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  min-width: 280px;
}

.left-box h2,
.form-box h2,
.right-box h3 {
  color: yellow;
  margin-bottom: 10px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input,
textarea,
select {
  padding: 10px;
  border: none;
  border-radius: 5px;
  resize: none;
}

textarea {
  min-height: 100px;
}

button {
  background-color: yellow;
  color: black;
  font-weight: bold;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.social-links {
  margin-top: 10px;
}

.social-links img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .left-box,
  .form-box,
  .right-box {
    width: 90%;
  }
  .download-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #00cc99;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background-color: #009977;
}
}
