body {
  font-family: 'Inter', sans-serif;
  color: #17251F;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

:root {
  --solution-screen-offset: 98px;
  --solution-grid-gap: 20px;
}

.page-header-section {
  background: #F5FAF7;
  padding: 50px 0 40px;
}

.breadcrumb-nav {
  color: #5B6A63;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.breadcrumb-nav a {
  color: #5B6A63;
}

.breadcrumb-nav a:hover,
.breadcrumb-nav span {
  color: #27B97A;
}

.page-header-section h1 {
  color: #17251F;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header-section p {
  color: #5B6A63;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.solutions-listing {
  background: #F5FAF7;
  padding: 34px 0 72px;
}

.solution-list-grid {
  display: grid;
  gap: var(--solution-grid-gap);
  grid-auto-rows: calc((100vh - var(--solution-screen-offset) - var(--solution-grid-gap)) / 2);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-list-grid-item {
  min-width: 0;
}

.solution-list-empty {
  grid-column: 1 / -1;
}

.solution-card {
  background: #fff;
  border: 1.5px solid #DDEEE6;
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 28px;
  align-items: stretch;
}

.solution-card:hover {
  border-color: rgba(37,191,123,0.42);
  box-shadow: 0 18px 44px rgba(22,36,31,0.09);
  transform: translateY(-3px);
}

.card-img-wrap {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: center;
  overflow: hidden;
  order: 2;
  padding: 0 32px 0 0;
}

.card-img-wrap img {
  width: 100%;
  height: 175px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.solution-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-body-content {
  padding: 32px 0 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}

.solution-type {
  color: #27B97A;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.solution-type i {
  margin-right: 5px;
}

.solution-card h2 {
  color: #17251F;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0 0 14px;
}

.solution-card h2 a:hover {
  color: #27B97A;
}

.capacity-text {
  color: #5B6A63;
  font-size: 14px;
  line-height: 1.68;
  margin: 0 0 24px;
  max-width: 390px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.view-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: #063342;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  min-height: 36px;
  padding: 10px 17px;
  transition: background 0.25s, color 0.25s;
}

.view-link:hover {
  background: #27B97A;
  color: #fff;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.page-btn {
  align-items: center;
  background: #fff;
  border: 1.5px solid #DDEEE6;
  border-radius: 8px;
  color: #17251F;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  padding: 0 12px;
  transition: all 0.25s;
}

.page-btn:hover,
.page-btn.active {
  background: #27B97A;
  border-color: #27B97A;
  color: #fff;
}

.page-btn.disabled {
  color: #B2BDB8;
  pointer-events: none;
}

.cta-banner {
  background: #27B97A;
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 24px;
}

.btn-white,
.btn-outline-white {
  border-radius: 8px;
  display: inline-block;
  font-weight: 700;
  margin: 6px;
  padding: 12px 28px;
}

.btn-white {
  background: #fff;
  color: #27B97A;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline-white:hover,
.btn-white:hover {
  background: #fff;
  color: #1A7A52;
}

@media (max-width: 767px) {
  .solution-list-grid {
    gap: 18px;
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .solution-card {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 230px;
  }

  .card-img-wrap {
    order: 1;
    min-height: 210px;
    padding: 18px;
  }

  .card-img-wrap img {
    max-height: 210px;
  }

  .card-body-content {
    order: 2;
    padding: 22px;
  }

  .page-header-section {
    padding: 36px 0 30px;
  }

  .page-header-section h1 {
    font-size: 1.55rem;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 1199px) {
  .solution-card {
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 24px;
  }

  .card-img-wrap {
    padding-right: 28px;
  }

  .card-img-wrap img {
    height: 160px;
  }

  .card-body-content {
    padding: 28px 0 28px 28px;
  }

  .solution-card h2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .solution-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .card-img-wrap {
    order: 1;
    min-height: 210px;
    padding: 18px;
  }

  .card-body-content {
    order: 2;
    padding: 22px;
  }
}
