/* base setting */
body {
  font-family: "Noto Sans TC", Arial, sans-serif;
}

/* 專屬服務 */
.advantages-wrap {
  width: 100%;
  background: #f4f6fa;
  padding: 60px 0;
}

.advantages-wrap .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.advantages-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1e7bcb;
  margin-bottom: 40px;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.advantage-item {
  gap: 16px;
}

.advantage-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 12px;
}

.advantage-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e7bcb;
  margin: 0 0 8px;
}

.advantage-item p {
  font-size: 14px;
  color: #424242;
  margin: 0;
  line-height: 1.6;
}

/* 企業合作 */
.corporate-cooperation {
  background: #f8fcfe;
  padding: 60px 0;
}
.corporate-list {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.corporate-item {
  flex: 1 1 272px;
  max-width: 272px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.corporate-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #1e7bcb;
}

.corporate-item .logo-box {
  width: 100%;
  aspect-ratio: 272 / 100;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  padding: 20px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corporate-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.corp-name {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .advantages {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-cooperation {
    padding: 48px 0;
  }
  .corporate-item {
    flex: 0;
  }
  .corporate-list {
    flex-wrap: wrap;
  }

  .corporate-list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 992px) {
  .advantages-title {
    font-size: 24px;
  }

  .advantages {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-item {
    flex: 0 0 calc((100% - 30px) / 2);
    max-width: calc((100% - 30px) / 2);
  }

  .corp-name {
    font-size: 14px;
  }
}
