/* ================= SECTION BASE ================= */
.tp-section {
  padding: 60px 20px;
  background: #f5f7fb;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  width: 90%;
  margin: auto;
}

/* ================= IMAGE SECTION ================= */
.image-section {
  margin-bottom: 40px;
}

.image-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.image-box {
  flex: 1;
  height: 550px; /* 🔥 Adjust height here */
  overflow: hidden;
  border-radius: 12px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= TITLE ================= */
.tp-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.tp-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

/* ================= GRID ================= */
.tp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ================= ITEM CARD ================= */
.tp-item {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* Hover Effect */
.tp-item:hover {
  transform: translateY(-5px);
  background: #007bff;
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .tp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .image-box {
    height: 250px;
  }

  .tp-title {
    font-size: 26px;
  }
}