/* RESET */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* SECTION */

.services-section {
  padding: 60px 20px;
  background: #f9fbfc;
}

/* HEADING */

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 26px;
  color: #0f2f3a;
  margin: 0;
}

.heading-line {
  width: 50px;
  height: 3px;
  background: #0f2f3a;
  display: block;
  margin: 10px auto 0;
}

/* WRAPPER (DESKTOP = 2 COLUMNS) */

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */

.service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-left: 4px solid #0f2f3a;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* TEXT */

.service-card h3 {
  margin-bottom: 10px;
  color: #0f2f3a;
  font-size: 18px;
}

.service-card p {
  color: #555;
  line-height: 1.6;
  font-size: 14px;
}

/* TABLET ADJUSTMENT */

@media (max-width: 992px) {
  .services-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE (STACKED FULL WIDTH) */

@media (max-width: 768px) {
  .services-section {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .service-card {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 22px;
  }
}

