.healthcare-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 7rem;
    font-family: Arial, sans-serif;
  }
  
  .layout {
    display: grid;
    grid-template-columns: 33% 65%;
    gap: 2rem;
    
  }
  
  /* Left Column */
  .left-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    grid-template-columns: 10fr 1fr;
    gap: 2rem;
    align-items: start;;
  }
  
  .header2 {
    padding-right: 2rem;
  }
  
  .header2 h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
  }
  
  .header2 p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
  }
  
  /* Right Column */
  .right-column {
    position: relative;
  }
  
  .top-right-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  
  .service-card {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .service-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .discover-link {
    color: #43B929;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 500;
  }
  
  .discover-link:hover {
    text-decoration: underline;
  }
  
  /* Positioning for specific cards */
  .general-medicine {
    margin-top: 4rem;
  }
  
  .emergencies {
    margin-top: 8rem;
  }
  
  .bottom-columns {
    position: absolute;
    transform: translateX(-50%);
    width: 80%;
    margin-top: 20rem;
    z-index: 1S;
  }
  
  .more-services {
    text-align: center;
    max-width: 800px;
    left: 10%;
    margin: 0 auto;
    padding: 200px;
  }
  
  .icon-container {
    margin-bottom: 1rem;
  }
  
  .heart-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
  
  .more-services h3 {
    font-size: 1.5rem;
  }
  
  .discover-button {
    background: #43B929;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    margin-top: 4rem;
    top: 2rem; /* Move it down by 2rem */
    z-index: 2;
  }
  
  .discover-button:hover {
    background: #43B929;
  }
  
  .choose-us {
    position: absolute;
    transform: translateX(-50%);
    width: 80%;
    margin-top: 40rem;
    z-index: 1S;
    text-align: center;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
    padding: 12rem;
  }
  
  .choose-us h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .choose-us p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.5;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .healthcare-container {
      padding: 2rem;
    }
    .layout {
      grid-template-columns: 1fr;
    }
    .header2 h1 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    .header2 p {
      font-size: 1rem;
    }
    .service-image {
      height: 200px;
    }
    .service-content h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }
    .service-content p {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }
    .top-right-section {
      grid-template-columns: 1fr;
    }
    .general-medicine,
    .emergencies {
      margin-top: 0;
    }
    .bottom-columns,
    .choose-us {
      position: static;
      transform: none;
      width: 100%;
      margin-top: 2rem;
      padding: 2rem;
    }
    .more-services {
      padding: 2rem;
    }
  }