/* Service */
/* SERVICES GRID */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.service-card h2 {
  color: #004a99;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}

.service-card p {
  margin-bottom: 10px;
  color: #333;
}

.service-card ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.service-card ul li {
  margin-bottom: 5px;
  color: #555;
  list-style-type: disc;
}

.btn-get-started {
  display: inline-block;
  padding: 10px 20px;
  background-color: #004a99;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
  margin-top: auto; /* key for flex layout */
}

.btn-get-started:hover {
  background-color: #003366;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .btn-get-started {
    width: 100%;
    margin-top: 20px;
  }
}
