/* ✅ Mobile (Phones) */
@media (max-width: 480px) {
  nav {
    flex-direction: column;
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  form input, form textarea {
    width: 100%;
  }
}

/* ✅ Small Tablets */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  nav img#logo {
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

/* ✅ Medium Screens (like laptops) */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .hero-text {
    padding: 1.5rem;
  }

  form input, form textarea {
    width: 90%;
  }
}
