.f-cta-with-background {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
}

.f-cta-with-background__wrapper {
  position: relative;
  width: 100%;
  min-height: 400px;
}

/* 背景图片层 */
.f-cta-with-background__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.f-cta-with-background__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.f-cta-with-background__placeholder {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 内容层 */
.f-cta-with-background__content-wrapper {
  position: relative;
  z-index: 2;
  padding: 0;
  display: flex;
  align-items: center;
  min-height: 400px;
  height: 100%;
  padding-left: 5%;
}

/* 白色内容盒子 */
.f-cta-with-background__content-box {
  background: #FFFFFF;
  padding: 60px;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.f-cta-with-background__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.f-cta-with-background__description {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 32px;
}

/* 按钮样式 */
.f-cta-with-background__button-wrapper {
  margin-top: 32px;
}

.f-cta-with-background__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #6366F1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.f-cta-with-background__button:hover {
  gap: 16px;
  color: #4f46e5;
}

.f-cta-with-background__button-text {
  position: relative;
}

.f-cta-with-background__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #6366F1;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.f-cta-with-background__button:hover .f-cta-with-background__button-icon {
  background: #4f46e5;
  transform: translateX(4px);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .f-cta-with-background__content-box {
    padding: 50px;
    max-width: 450px;
  }

  .f-cta-with-background__title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .f-cta-with-background {
    min-height: 500px;
  }

  .f-cta-with-background__wrapper {
    min-height: 500px;
  }

  .f-cta-with-background__content-wrapper {
    padding: 0;
    min-height: 500px;
    padding-left: 0;
  }

  .f-cta-with-background__content-box {
    padding: 40px 32px;
    max-width: 100%;
    height: auto;
    min-height: 500px;
  }

  .f-cta-with-background__title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .f-cta-with-background__description {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
