body {
  background: #f5f7fa;
}

/* PAGE */
.service-container {
  width: min(1200px, calc(100% - 24px));
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
}

/* CARD */
.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, orange, #1e3a8a);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1e3a8a;
  color: white;
}

.service-icon i {
  font-size: 20px;
}

.service-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.service-card ul {
  padding-left: 0;
}

.service-card li {
  list-style: none;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.service-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: orange;
  font-size: 14px;
}

/* BUTTON */
.contact-btn-box {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
}

.contact-btn {
  display: inline-block;
  background: #1e3a8a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
}

.contact-btn:hover {
  background: orange;
  color: #fff;
}

@media (max-width: 991px) {
  .service-container {
    width: 94%;
    margin: 40px auto;
    gap: 20px;
  }

  .service-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .service-container {
    grid-template-columns: 1fr;
    width: 92%;
    margin: 30px auto;
    padding: 0;
  }

  .page-title {
    font-size: 34px;
    margin-bottom: 25px;
  }

  .service-card h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .service-container {
    width: 94%;
    gap: 16px;
  }

  .service-card {
    padding: 22px 18px;
    border-radius: 10px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .service-card h2 {
    font-size: 18px;
  }

  .service-card p,
  .service-card li {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-btn {
    width: 100%;
    max-width: 260px;
  }
}

/* ================= CONSISTENCY PASS ================= */
.service-card {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.service-card:hover {
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

.service-card h2 {
  color: #111827;
  font-weight: 800;
  line-height: 1.2;
}

.service-card p,
.service-card li {
  color: #5f6675;
  line-height: 1.65;
}

.contact-btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 28px;
}

@media (max-width: 480px) {
  .service-card {
    border-radius: 16px;
  }
}
