:root {
  --cp-color-text-2: #ADADAD;
  --cp-color-text-body: #4D4D4D;
  --cp-color-heading-primary: #02D8E9;
  /* Using logo's primary deep blue */
}

/* Service Section */
.service-section-2 {
  background-color: #F1F1F1 !important;
  position: relative;
  z-index: 5;
  opacity: 1 !important;
  visibility: visible !important;
}

.section-heading {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 30px;
  }
}

.section-heading .sub-heading {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 14px;
  font-family: var(--floens-font, "DM Sans", sans-serif);
  border: 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f26522;
  /* Logo orange color for tagline/sub-heading */
}

.section-heading .sub-heading .line {
  display: inline-block;
  border-radius: 16px;
  width: 20px;
  height: 2px;
  background-color: #f26522;
  /* Logo orange color */
}

.section-heading .section-title {
  color: var(--cp-color-heading-primary);
  font-size: 47px;
  line-height: 64px;
  font-weight: 500;
  display: block;
  margin-bottom: 0;
  text-transform: inherit;
  position: relative;
  overflow: hidden;
  font-family: var(--floens-font, "DM Sans", sans-serif);
}

@media (max-width: 1199px) {
  .section-heading .section-title {
    font-size: 50px;
    line-height: 1.1;
  }
}

@media only screen and (max-width: 992px) {
  .section-heading .section-title {
    font-size: 42px;
    max-width: 100%;
  }

  .section-heading .section-title br {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .section-heading .section-title br {
    display: none;
  }
}

.service-item-wrap-2 {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.service-item-wrap-2 .service-item-2 {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  background-color: transparent !important;
  background: transparent !important;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  visibility: visible !important;
}


.service-item-wrap-2 .service-item-2:last-child {
    border-bottom: none !important;
  padding-bottom: 0px;
}


.service-item-inner {
  width: 100%;
  align-items: center;
  /* Align inner columns vertically center */
  justify-content: space-between;
}

.service-item-2:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.service-item-2:last-of-type {
  border-bottom: 0;
}

.service-item-2 .service-item-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 350px;
  width: 416px;
  max-width: 100%;
}

@media only screen and (max-width: 992px) {
  .service-item-2 .service-item-left {
    margin-bottom: 40px;
    display: block;
    height: auto;
  }

  .service-item-wrap-2 .service-item-2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.service-item-2 .service-item-left .title {
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
  color: #111111 !important;
  font-family: var(--floens-font, "BDOGrotesk", sans-serif);
}

@media only screen and (max-width: 992px) {
  .service-item-2 .service-item-left .title br {
    display: none;
  }
}

.service-item-2 .service-item-left .year {
  color: var(--cp-color-text-body);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--floens-font, "BDOGrotesk", sans-serif);
}

.service-item-2 .service-img {
  width: 490px;
  height: 350px;
  max-width: 100%;
}

.service-item-2 .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.service-item-2 .service-txt {
  width: 306px;
  height: 350px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
  margin-left: 0;
}

.service-item-2 .service-txt p {
  font-size: 16px;
  /* 16px matches Public Sans text size in Screenshot 1 */
  font-weight: 400;
  line-height: 26px;
  margin-top: 70px;
  margin-bottom: 20px;
  color: var(--cp-color-text-body);
  font-family: var(--floens-font, "BDOGrotesk", sans-serif);
}

@media only screen and (max-width: 992px) {
  .service-item-2 .service-txt {
    margin-top: 20px;
    height: auto;
  }
}

.service-item-2 .read-more-btn {
  font-size: 16px;
  font-weight: 600;
  color: #111111 !important;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--floens-font, "BDOGrotesk", sans-serif);
}

.service-item-2 .read-more-btn::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #111111 !important;
  transition: all 0.3s ease-in-out;
}

.service-item-2 .read-more-btn i {
  rotate: -30deg;
  color: #111111 !important;
  transition: all 0.3s ease-in-out;
}

.service-item-2 .read-more-btn:hover {
  color: #111111 !important;
}

.service-item-2 .read-more-btn:hover::after {
  width: 86%;
}

.service-item-2 .read-more-btn:hover i {
  rotate: 0deg;
  color: #111111 !important;
}

.service-item-2 .read-more-btn:hover::after {
  width: 86%;
}

.service-item-2 .read-more-btn:hover i {
  rotate: 0deg;
}