.sub-hero {
  padding: 90px 0 50px;
  background: #f7f8fb;
  text-align: center;
}

.sub-hero h1 {
  font-size: 42px;
  color: #0d1b63;
  margin-bottom: 14px;
}

.sub-hero p {
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}

.info-text {
  margin-top: 24px;
  font-size: 17px;
  color: #444;
  line-height: 1.8;
}

.single-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.overview-item {
  padding: 30px;
  border-radius: 18px;
  background: #f7f7f7;
}

.overview-item h3 {
  font-size: 26px;
  margin-bottom: 18px;
  color: #111;
}

.overview-item p {
  color: #555;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .sub-hero {
    padding: 70px 0 40px;
  }

  .sub-hero h1 {
    font-size: 32px;
  }

  .gallery-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }
}

.type-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.type-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  background: #fff;
}

.type-info {
  padding: 10px 0;
}

.type-info h3 {
  font-size: 30px;
  margin-bottom: 18px;
  color: #0d1b63;
}

.type-info p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.type-info ul {
  padding-left: 20px;
}

.type-info li {
  font-size: 16px;
  color: #444;
  line-height: 1.9;
}

.section-gray {
  background: #f8f8f8;
}

@media (max-width: 768px) {
  .type-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .type-info h3 {
    font-size: 24px;
  }

  .type-info p,
  .type-info li {
    font-size: 15px;
  }
}