
/* Base Styles */
.container h1 {
  font-size: 1.4rem;
  color: #202020;
}
h2 {
  color: #e61212;
  margin-bottom: 20px;
}

.card-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 150px;
  text-align: center;
}

.card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.card h3 {
  font-size: 1.1em;
  margin-top: 10px;
}

  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
  }

  .service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .service-content {
    padding: 15px;
  }

  .service-content h3 {
    margin: 0 0 10px;
    color: #0077cc;
  }

  .service-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  @media (max-width: 600px) {
    .service-content p {
      font-size: 13px;
    }
  }





  /* other */

  