/* Banner Section */
.banner {
  background-color: #d1e7fe;
  position: relative;
  transition: background-color 0.5s;
}

.banner_slider {
  overflow: hidden;
}

.banner_slide {
  display: none;
  width: 100%;
  background: url("../img/lack_project.jpg") center top / auto 100% no-repeat;
  background-color: #d1e7fe;
}

.banner_slide--active {
  display: block;
}

.banner_content {
  display: flex;
  justify-content: center;
  min-height: 420px; /* Adjust based on design */
}

.banner_container {
  width: 100%;
  padding: 91px 0;
  margin-left: 180px;
}

.banner_title {
  font-family: "PingFangSC-Medium", sans-serif;
  font-size: 54px;
  line-height: 72px;
  font-weight: 500;
  color: #171a1d;
  text-align: left;
  margin-bottom: 20px;
}

.banner_subtitle {
  color: rgba(23, 26, 29, 0.6);
  text-align: left;
  margin-bottom: 40px;
}

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

.banner_button {
  display: flex;
  justify-content: flex-start;
}

.button {
  display: inline-block;
  padding: 9px 22px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s, border-color 0.3s;
}

.button--primary {
  color: #ffffff;
  background-color: #007fff;
  border: 1px solid #007fff;
}

.button--primary:hover {
  background-color: #005bbb;
  border-color: #005bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner_container {
    padding: 40px 20px;
  }

  .banner_title {
    font-size: 36px;
    line-height: 48px;
  }

  .banner_subtitle p {
    font-size: 14px;
  }
}


.core-scenes-module {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.module-container {
  background: linear-gradient(rgb(209, 230, 253) -5%, rgb(255, 255, 255) 79%);
  padding: 120px 20px 60px;
  position: relative;
  min-width: 320px;
}

/* Background Layer (conditionally applied) */
.background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 100%;
}

/* Apply background image only if data-bg-image is non-empty */
.background-layer[data-bg-image]:not([data-bg-image=""]) {
  background-image: var(--bg-image);
}

/* Default to no background image */
.background-layer {
  --bg-image: none;
}

/* Content Section */
.pain-points {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.module-title {
  font-size: 48px;
  line-height: 58px;
  color: rgb(23, 26, 29);
  font-weight: 500;
  margin-bottom: 40px;
}

/* Grid Layout for Items */
.pain-points-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  background: linear-gradient(26deg, hsla(0, 0%, 100%, .9), hsla(0, 0%, 100%, 0) 21%), linear-gradient(30deg, rgba(242, 242, 247, .6) 30%, hsla(0, 0%, 100%, .6) 98%), hsla(0, 0%, 100%, .8);
  border-radius: 16px;
  box-shadow: 0 20px 40px 0 rgba(23, 26, 29, .04), 0 30px 60px 0 rgba(23, 26, 29, .08);
  box-sizing: border-box;
  font-size: 18px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 40px 32px;
}

/* Individual Pain Point Item */
.pain-point-item {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid hsla(210, 7%, 53%, .16);
  box-sizing: content-box;
  padding: 0 36px;
  width: 330px;
}

.pain-point-item:last-child {
    border-right: none; /* 最后一个元素移除右边框 */
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.icon {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.item-title {
  font-size: 24px;
  font-weight: 500;
  color: rgb(23, 26, 29);
  margin-bottom: 10px;
}

.item-text {
  font-size: 16px;
  color: rgb(23, 26, 29);
  margin: 5px 0;
}


.radio-group {
    display: flex;
    gap: 150px;
    align-items: center;
}

.radio-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
}

.radio-label:hover {
    color: #3b82f6;
}

.radio-label input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.radio-label input[type="radio"]:checked {
    border: 1px solid #3b82f6;
    background: #3b82f6;
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
}


.form-input, .form-select, .form-textarea {
    font-size: 14px;
    color: #333;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 10px;
    width: 97%;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}


.partner-form-container h2{
	font-size: 28px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 80px;
	text-align: center;
	letter-spacing: 0.5px;
}