/* ================= BANNER ================= */
.banner {
  position: relative;
  width: 100%;
  height: 360px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #edcd41b0;
  color: #fff;
  padding: 5px 70px;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
}

/* ================= PAGE ================= */
.page {
  padding: 70px 0;
}

.page-container {
  width: 85%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* ================= IMAGE ================= */
.left-img {
  width: 48%;
}

.left-img img {
  width: 100%;
  border-radius: 22px;
}

/* ================= CONTENT ================= */
.right-content {
  width: 52%;
}

.right-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #222;
}

.blue-line {
  width: 55px;
  height: 3px;
  background: #1f78c8;
  margin: 12px 0 22px;
}

.right-content p {
  font-size: 17px;
  line-height: 1.1;
  color: #444;
  margin-bottom: 15px;
}

.bold {
  font-weight: 500;
}

/* List without default bullets */
.list p {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.list p::before {
  content: "•";
  position: absolute;
  left: 0;
}

.services-grid {
  padding: 2px 0 30px;
}

.grid-container {
  width: 85%;
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.service-box {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 15px 10px;
  text-align: center;
  transition: 0.3s ease;
  background: #fff;
}

.service-box img {
  width: 40%;
  margin-left: 50px;
}

.service-box p {
  font-size: 15px;
  color: #222;
  font-weight: 250;
  line-height: 1.2;
}

.service-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .page-container {
    gap: 40px;
  }

  .banner {
    height: 300px;
  }

  .banner-title {
    font-size: 24px;
    padding: 14px 35px;
  }

  .right-content h2 {
    font-size: 24px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .banner {
    height: 230px;
  }

  .banner-title {
    font-size: 18px;
    padding: 12px 25px;
    white-space: normal;
  }

  .page {
    padding: 45px 0;
  }

  .page-container {
    flex-direction: column;
    width: 90%;
    gap: 35px;
  }

  .left-img,
  .right-content {
    width: 100%;
  }

  .right-content h2 {
    font-size: 22px;
  }

  .right-content p {
    font-size: 15px;
  }

  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .banner-title {
    font-size: 16px;
    padding: 10px 18px;
  }

  .right-content h2 {
    font-size: 20px;
  }
}
