/* ==============================
   HERO SECTION
================================ */

.infra-hero {
  width: 100%;
  background: #ffffff;
}

.infra-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.infra-hero-content {
  display: flex;
  flex-direction: column;
}

.infra-breadcrumb {
  font-size: 14px;
  color: #8a9a9a;
  margin-bottom: 20px;
}

.infra-breadcrumb a {
  color: #2E6A66;
  text-decoration: none;
}

.infra-hero h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.infra-hero p {
  margin-top: 100px;
  font-size: 18px;
  color: #4a5f5f;
}

.infra-hero-image img {
  width: 100%;
}

/* ==============================
   TABLE
================================ */

.infra-section {
  padding: 60px 0;
}

.infra-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.infra-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.infra-table {
  width: 100%;
  border-collapse: collapse;
}

.infra-table th {
  background: #d9d9d9;
  border: 1px solid #000;
  padding: 12px;
}

.infra-table td {
  border: 1px solid #000;
  padding: 12px;
}

.infra-table td:first-child {
  width: 70px;
}

.infra-table td:last-child {
  width: 250px;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .infra-hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .infra-hero h1 {
    font-size: 28px;
  }

  .infra-hero p {
    margin-top: 20px;
    font-size: 15px;
  }
}