* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
}

.header-section {
position: relative;
  /*background: linear-gradient(90deg, #00c1a1 0%, #0084c7 100%);*/
  color: white;
  overflow: hidden;
  background-image: url('../images/Header_banner.png');background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; min-height: 660px;

}

@media (max-width: 768px) {
  .custom-bg-section {
   min-height: 200px;
  }
}
.overlay {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.top-bar {
  display: flex;
  justify-content: space-between; /* Menu left, button right */
  align-items: center; /* Align vertically center */
  font-size: 14px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 10px; /* Space between items */
  margin: 0;
  padding: 0;
}

.menu li {
  font-size: 14px;
}

.call-btn {
  background: #0075b0;
  padding: 6px 15px;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.content {
  max-width: 1200px;
  margin: 380px auto 0;
  text-align: left;
}

.content h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.content p {
  margin-bottom: 20px;
}

.book-btn1 {
  background: #0075ff;
  margin-left:10px;
  padding: 12px 25px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.image-container {
  position: relative;
  margin-top: 30px;
}

.image-container img {
  max-width: 100%;
  border-radius: 10px;
}

.tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.tag-special {
  top: 20%;
  left: 25%;
}

.tag-newborn {
  bottom: 10%;
  left: 25%;
}

.tag-elderly {
  top: 10%;
  right: 15%;
}

.tag-child {
  bottom: 10%;
  right: 20%;
}

.curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: white;
  clip-path: ellipse(80% 100% at 50% 0%);
}

.info-section {
  background: white;
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: left;
}

.info-section h2 {
  color: #0075c7;
  font-weight: bold;
  margin-bottom: 15px;
}

.info-section p {
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 1.5rem;
  }

  .tag {
    font-size: 10px;
    padding: 4px 8px;
  }
}


.nursing-card {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 20px;
  
  width: 100%;
}

.card-image img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1e73be;
  margin-top: 15px;
}

.divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 10px 0;
}

.card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.card-text a {
  color: #1e73be;
  text-decoration: none;
}

.card-actions {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;
  gap: 12px; /* Space between items */
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.card-actions li {
  display: flex;
  align-items: center;
}

.card-actions img {
  width: 32px;
  height: 32px;
}

.book-btn {
  background: linear-gradient(90deg, #00c1a1 0%, #0084c7 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.icons {
  display: flex;
  gap: 10px;
}

.icons img {
  width: 32px;
  height: 32px;
}


@media (max-width: 500px) {
  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


.footer {
  background: linear-gradient(90deg, #00c1a1 0%, #0084c7 100%);
  color: white;
  text-align: center;
  padding: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}

.footer-top a {
  color: white;
  text-decoration: none;
}

.divider {
  color: white;
}

.footer-bottom {
  margin-top: 10px;
  font-size: 14px;
}

@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    gap: 5px;
  }
  .divider {
    display: none; /* Hide dividers on mobile */
  }
}