.service-list-page {
  padding: 40px 45px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}
.service-list-page__title {
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 40px;
  color: #333;
  border-bottom: 3px solid #00367c;
  width: -moz-fit-content;
  width: fit-content;
}

.service-list-nav {
  margin-bottom: 60px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}
.service-list-nav__list {
  display: flex;
  justify-content: space-between;
  gap: 0px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.service-list-nav__item {
  margin: 0;
  width: 32%;
}
@media screen and (max-width: 768px) {
  .service-list-nav__item {
    width: 100%;
    margin-bottom: 10px;
  }
}
.service-list-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid rgb(203, 213, 225);
  border-radius: 8px;
  padding: 16px 20px;
  transition: box-shadow 0.3s ease;
  min-height: 56px;
}
.service-list-nav__link:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.service-list-nav__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #00367c;
  flex-shrink: 0;
  position: relative;
}
.service-list-nav__arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
}

.service-list-section {
  margin-bottom: 80px;
}
.service-list-section__title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin: 0 0 0px;
}
.service-list-section__title span {
  display: flex;
  align-items: center;
  position: relative;
  padding: 4px 0 2px 5px;
  border-left: 8px solid #00367c;
  padding-left: 7px;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .service-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-card {
  padding: 0px;
  transition: box-shadow 0.3s ease;
}
.service-card__image {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  background: #f5f5f5;
}
.service-card__image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-card__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.service-card__bullet {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #00367c;
  flex-shrink: 0;
}
.service-card__description {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 70px;
}
.service-card__button {
  display: block;
  margin: 0 auto;
  width: 200px;
  background-color: #00367c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.service-card__button:hover {
  background-color: #002a5f;
}

html {
  scroll-behavior: smooth;
}/*# sourceMappingURL=service-list.css.map */