@import url(/css/modal.css);
@import url(/css/footer.css);
@import url(/css/general.css);
@import url(/css/legalize-near.css);

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #1e1e1e;
  background: #fff;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.service-page {
  padding: 40px 0 80px;
}

.service-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: #e95404;
  font-weight: 600;
}

.service-hero {
  padding: 40px 0 20px;
}

.service-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(233, 84, 4, 0.08);
  color: #e95404;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-title {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
}

.service-description {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #464646;
}

.service-list-section {
  padding: 48px 0;
}

.service-section-title {
  margin: 0 0 28px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.service-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-group {
  padding: 24px;
  border-radius: 14px;
  background: #fafafa;
  box-shadow:
    0 4px 4px -1px rgba(12, 12, 13, 0.05),
    0 4px 4px -1px rgba(12, 12, 13, 0.1);
}

.service-group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.service-group-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 6px;
  background: #e95404;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-group-icon svg {
  width: 34px;
  height: 34px;
  color: #fff;
  display: block;
}

.service-group-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.service-group-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-group-item {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.5;
  color: #464646;
}

.service-group-item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e95404;
}

@media only screen and (max-width: 900px) {
  .service-groups {
    grid-template-columns: 1fr;
  }

  .service-section-title {
    font-size: 26px;
  }

  .service-group {
    padding: 20px;
  }

  .service-group-title {
    font-size: 20px;
  }

  .service-title {
    font-size: 32px;
  }

  .service-description {
    font-size: 16px;
  }

  .service-list-section{
    padding: 24px 0;
  }
}
