.our-service {
  background-image: url(../images/our-service-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
  margin-top: -100px;
}

.services-section {
  margin-top: 100px;
}

.services-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.technology-section {
  padding-top: 60px;
}

.description-service {
  font-size: 14px;
  font-weight: 400;
  color: #313a3b;
  max-width: 1200px;
  text-align: left;
  margin: 120px auto 80px;
  width: 100%;
}

.services-grid img {
  width: 812px;
  height: 456px;
}

.service-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 1.2rem;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.technology-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.tech-category {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.tech-category h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: left;
  color: black;
  border-left: 5px solid #26b999;
  padding-left: 10px;
}

.tech-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-item {
  background-color: #313a3b;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  max-height: 50px;
  min-width: 114px;
  width: auto;
}

.tech-item:hover {
  background-color: #26b999;
}

.title {
  font-weight: 500;
  color: #313a3b;
  font-size: 52px;
  text-align: center;
  position: relative;
}

.title::after {
  content: url(../images/after-title.svg);
  position: absolute;
  left: 50%;
  transform: translate(-50%, -25%);
  z-index: -1;
}

.sub-title {
  font-weight: 400;
  color: #313a3b;
  font-size: 32px;
  text-align: center;
  position: relative;
}

.sub-title::after {
  content: url(../images/after-sub-title.svg);
  position: absolute;
  left: 50%;
  transform: translate(-50%, -15%);
  z-index: -1;
}

.technology-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.description-service-sub-title {
  font-weight: 400;
  font-size: 14px;
  color: #313a3b;
  margin: 50px auto 40px;
  text-align: center;
}

.tech-title {
  font-size: 16px;
  font-weight: 700;
  color: #313a3b;
  position: relative;
  margin-left: 30px;
  text-align: left;
  margin-bottom: 20px;
}

.tech-title::before {
  content: url(../images/tech-title-before.svg);
  position: absolute;
  left: -16px;
  transform: translate(-50%, -15%);
  z-index: -1;
}

.our-service__container {
  max-width: 1200px;
  margin: 0 auto;
}

.our-service__title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
  font-weight: 500;
  position: relative;
  z-index: 1111;
  margin-top: 70px;
}

.our-service__title::after {
  content: url(../images/after-sub-title-bold.svg);
  position: absolute;
  left: 50%;
  transform: translate(-50%, -25%);
  z-index: -1;
}

.our-service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.our-service__item {
  background: #fff;
  padding: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.our-service__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.our-service__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.our-service__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.our-service__item-title {
  font-size: 20px;
  color: #333;
}

.our-service__description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.thank-you__button {
  margin-top: 60px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 100px;
  margin-left: 40px;
}

@media (max-width: 768px) {
  .our-service__container {
    padding: 0 12px;
  }

  .our-service {
    padding: 80px 0 40px;
    position: relative;
    background: url("../images/vision-bg-sp.svg") no-repeat;
    background-size: 180px auto;
    background-position: top right;
    margin-top: -100px;
    padding-top: 100px;
    overflow: hidden;
  }

  .technology-section__container {
    padding: 0 12px;
  }

  .our-service__title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .our-service__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .our-service__item {
    padding: 10px;
  }

  .our-service__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .our-service__item-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .our-service__description {
    font-size: 12px;
  }

  .thank-you__button {
    margin: 60px auto 0;
    margin-bottom: 0px;
  }
}
