* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
  }
  
  header {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 2rem;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .services {
    padding: 2rem;
    text-align: center;
  }
  
  .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .service {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .services h2{
text-decoration: underline;
  }
  /* Optional styling (to make it look nice) */
  .service-list h3 a {
  text-decoration: none;
  color: inherit;
}

.service-list h3:hover {
  text-decoration: underline;
}
/* Optional styling (to make it look nice) */
  
  .contact {
    background-color: #e9ecef;
    padding: 2rem;
    text-align: center;
  }
  
  .whatsapp-button {
    display: inline-block;
    margin-top: 1rem;
    background-color: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-button:hover {
    background-color: #1ebe57;
  }
  
  footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1rem;
  }
  