body {
    /* font-family: 'Arial', sans-serif; */
    /* background-color: #f9f9f9; */
    /* color: #333; */
}

/* .hair-treatment-section{
    padding: 50px 0;
} */

.hair-treatment-section h2 {
    color: #1a1a1a;
    font-weight: bold;
}

.hair-treatment-section p {
    color: #666;
    font-size: 18px;
    line-height: 1.5;
}

/* Service Cards */
.service-card {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .service-card img {
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    /* border-radius: 50%; */
  }
  
  .service-card h4 {
    margin-top: 20px;
    font-weight: 600;
    color: #333;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #666;
  }
  
  /* Responsive Grid */
  .row.g-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .col-md-4 {
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
  
  @media (max-width: 768px) {
    .col-md-4 {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
  
  /* Call to Action Section */
  .text-center h5 {
    font-size: 1.75rem;
    color: #333;
  }
  
  .text-center p {
    font-size: 1.1rem;
    color: #666;
  }
  
  .btn-primary {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
    padding: 10px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
  }
  
  .btn-lg {
    font-size: 1.2rem;
    padding: 12px 40px;
  }
  
  /* Additional styling for a sleek, modern look */
  a {
    text-decoration: none;
  }
  
  a:hover {
    color: #28a745;
  }
  
  .text-muted {
    color: #777;
  }
  
  /* Mobile View Adjustments */
  @media (max-width: 576px) {
    h2 {
      font-size: 2rem;
    }
  
    .service-card {
      padding: 20px;
    }
  
    .btn-lg {
      font-size: 1rem;
      padding: 10px 20px;
    }
  }