@media only screen and (max-width: 360px) and (max-height: 640px) {
  /* Styles for mobile device */
  header {
    flex-direction: column;
    align-items: flex-start;
	overflow:hidden;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .hero-content {
    font-size: 16px;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }

  .care-cards {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 100%;
    padding: 20px;
  }

  footer {
    padding: 10px;
  }

  .container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .col {
    flex-basis: 50%;
    text-align: center;
  }

  h3 {
    font-size: 1em;
  }

  .social-icons {
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .social-icons a {
    width: 20px;
    height: 20px;
  }
}