.header-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-text h2 {
  flex: 1;
  margin-bottom: 6px;
  font-size: 32px;
  color: var(--text-black);
  line-height: 40px;
  font-weight: 600;
}

.header-text p {
  flex: 2;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-light);
}

.header-image {
  width: 100%;
  margin-top: 20px;
}

.header-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
  margin-bottom: 40px;
}

.header-info {
  left: 30px;
  display: flex;
  gap: 20px;
  z-index: 3;
}

.content-section {
  padding: 40px 0 0 0;
}

.section {
  margin-bottom: 40px;
}

.section h2,
.content h2 {
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.content-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}

.content-list {
  flex: 1;
}

.content-list h2 {
  font-size: 32px;
  color: var(--text-black);
  line-height: 40px;
  font-weight: 600;
  margin-bottom: -6px;
}

.content-list p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-light);
}

.content-image {
  /* width: 533px; */
  width: 100%;
  height: 422px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-container {
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  gap: 48px;
}

.partner-logo {
  width: 100px;
  height: 80px;
  object-fit: contain;
  margin: 0 10px;
}

.content-list {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}

.content-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.content-icon {
  width: 56px;
  height: 56px;
  background-color: var(--green-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.content-icon img {
  width: 20px;
  height: 20px;
}

.content-text h4 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-black);
  line-height: 28px;
}

.intro {
  background: var(--green-500);
  padding: 40px 0;
}

#intro-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.intro-text {
  text-align: left;
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
  color: var(--text-black);
}

.intro-image img {
  width: 432px;
  height: 319px;
}

@media (max-width: 1024px) {
  .partner-container {
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 20px;
  }

  .partner-logo {
    width: 60px;
    height: auto;
    margin: 10px;
  }

}

@media (max-width: 768px) {
  .header-text h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .header-text p {
    font-size: 16px;
    line-height: 24px;
  }

  .header-image img {
    max-height: 220px;
    margin-bottom: 20px;
  }

  .content-section {
    padding: 20px 0;
  }

  .content-container {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    gap: 10px;
  }

  .content-list h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .content-list p {
      font-size: 16px;
    line-height: 24px;
  }
  .content-image {
    /* width: 300px; */
    height: auto;
    overflow: hidden;
  }

  .content-image img {
    max-height: 240px;
  }

  .content-icon {
    width: 44px;
    height: 44px;
  }

  .content-icon img {
    width: 22px;
    height: 22px;
  }

  .content-text h4 {
    font-size: 14px;
    line-height: 28px;
  }

  .intro {
    padding: 30px 16px;
  }

  .intro-text {
    font-size: 20px;
    line-height: 28px;
  }

  .intro-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .partner-container {
    margin: 0;
    padding: 0;
  }
}
