

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
  }
  
  
  header {
    background-color: #009688;
    padding: 15px 0;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
  }
  
  nav ul li a:hover {
    color: #c8ffec;
    text-decoration: underline;
  }
.medicine-detail {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .medicine-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 1000px;
  }
  

  .medicine-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  

  .medicine-info {
    max-width: 500px;
  }
  
  .medicine-info h1 {
    font-size: 32px;
    color: #009688;
    margin-bottom: 20px;
  }
  
  .medicine-info .price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .medicine-info .description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  

  .add-to-cart {
    padding: 15px 30px;
    background-color: #00bfa5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
  }