.sub-service {
  display: flex;
}
.sub-service-item { 
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  color: #fff;
  height: 70%;
  padding: 100px 30px;
}

.sub-service-item img {
  width: auto;
  height: 55px;
  margin-bottom: 0.5rem;
}

.sub-service-item-2 { 
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  color: #fff;
  height: 50%;
  padding: 100px 30px;
}

.sub-service-item-2 img {
  width: auto;
  height: 52px;
  margin-bottom: 0.8rem;
}


.sub-service-item h4 {
  min-height: 10px; /* ensures even multi-line headers have space */
  margin-bottom: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Default: 2 per row */
    gap: 20px;
    max-width: 1000px;
    margin:auto ;
    
  }
.image-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.image-grid-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default: 2 per row */
  gap: 20px;
  max-width: 1600px;
  margin:auto ;
    
}
.image-grid-1 img {
  width: 100%;
  height: auto;
  display: block;
}  

.image-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 1px;
  max-width: 1600px;
  margin:auto ;
    
}
.image-grid-2 img {
  width: 100%;
  height: 90%;
  display: block;
}  


#awardList {
  display: flex;
  gap: 5rem;
  padding: var(--vertical-gutter) calc(var(--horizontal-gutter) * 3);
}
#awardList > ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#awardList > div {
  flex: 3.5;
}
#awardList > ul button {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  text-align: left;
  border-radius: 4px !important;
  width: 100%;
  background-color: var(--color-grey);
  color: var(--color-dark-grey);
  padding: 14px 10px;
}
#awardList > ul button > svg {
  width: 16px;
  height: 16px;
  transition: 0.3s;
}
#awardList > ul button > svg > g > rect {
  fill: var(--color-dark-grey);
}
#awardList > ul button.active,
#awardList > ul button:hover {
  background-color: var(--color-primary-green);
  color: #fff;
}
#awardList > ul button.active > svg > g > rect,
#awardList > ul button:hover > svg > g > rect {
  fill: #fff;
}
.award-item p {
  color: var(--color-dark-grey);
}
#awardList .tab-content {
  color: #676767;
}
#awardList .tab-content h4 {
  font-weight: 400;
}




@media only screen and (max-width: 876px) {
  .sub-service {
    flex-wrap: wrap;
  }
  .sub-service-item {
    flex: 1 1 50%;
    padding: 20px;
  }
  #awardList {
    flex-direction: column;
    padding: var(--vertical-gutter) calc(var(--horizontal-gutter));
  }
  #awardList > ul {
    flex: initial;
    flex-wrap: nowrap;
    overflow: auto;
    flex-direction: row;
  }
  #awardList > ul > li {
    flex: 1 1 100%;
    height: min-content;
  }
  #awardList > ul button {
    text-align: center;
    white-space: nowrap;
  }
  .award-item > figure {
    margin-bottom: 1rem !important;
  }
}
@media only screen and (max-width: 603px) {
  .sub-service {
    flex-direction: column;
  }
  .sub-service-item {
    flex: 1 1 100%;
    padding: 15px;
  }
  #awardList > ul button {
    padding: 6px 20px;
    font-size: 18px;
    white-space: nowrap;
    height: auto;
  }
  #awardList {
    gap: 1rem;
  }
  .award-tab-content {
    flex-direction: column;
    gap: 1rem;
  }
}
  @media (min-width: 768px) {
    .image-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    .image-grid-1 {
      grid-template-columns: repeat(5, 1fr);
    }
    .image-grid-2 {
      grid-template-columns: repeat(5, 1fr);
    }
  }