/* pharmacy_styles.css */

body {
  font-family: 'Noto Sans Bengali', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f9f8;
  color: #333;
}

header {
  background-color: #0072FF;
  color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

header .logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #d1ffd6;
}

section {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

h2 {
  border-bottom: 2px solid #0a8754;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  color: #0a8754;
}

.banner img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 5px;
}

.tagline {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
  text-align: center;
  color: #0a8754;
}

.quick-info {
  background-color: #e6f5f1;
  padding: 1rem;
  text-align: center;
  border-radius: 5px;
}

.team-member {
  display: inline-block;
  width: 45%;
  margin: 1rem 2%;
  text-align: center;
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.license-item, .service-item {
  margin-bottom: 1.5rem;
}

.license-item img {
  max-width: 100%;
  max-height: 180px;
  display: block;
  margin-bottom: 0.5rem;
}

form label {
  display: block;
  margin-top: 1rem;
}

form input, form textarea, form button {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

form button {
  background-color: #0a8754;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #066944;
}

footer {
  background-color: #0a8754;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer a {
  color: #d1ffd6;
  text-decoration: underline;
  margin: 0 0.5rem;
}

@media screen and (max-width: 768px) {
  .team-member {
    width: 100%;
    margin: 1rem 0;
  }
}
