/* CTA Section - Common Styles */
/* Used across multiple pages for consistent CTA component styling */

.cta-section {
  padding: 120px 0;
  background-color: #FFFFFF;
}

.cta-section .cta-content {
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-section .section-title {
  flex: 0 0 auto;
  min-width: 0;
  font-size: 40px;
  font-weight: 700;
  color: #333333;
  text-align: left;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
    font-family: 'AlibabaPuHuiTi_2_65_Bold' !important;
}

.cta-content-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1 1 auto;
  min-width: 0;
  margin-top: 30px;
}

.cta-section .cta-description {
  font-size: 16px;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
  width: 100%;
}

.cta-section .cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
}

.cta-section .cta-separator {
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  margin: 0 8px;
  flex-shrink: 0;
}

.cta-section .btn-primary {
  background-color: #E63946;
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-section .btn-primary:hover {
  background-color: #C1121F;
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.25);
}

.cta-section .btn-secondary {
  background-color: white;
  color: #4F5D75;
  border: 2px solid #4F5D75;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-section .btn-secondary:hover {
  border-color: #4F5D75;
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
/* Large Desktop (1200px - 1440px) */
@media (max-width: 1440px) and (min-width: 1201px) {
  .cta-section .cta-content {
    flex-direction: row;
    gap: 55px;
  }
  .cta-section .section-title {
    font-size: 38px;
  }
  .cta-section .cta-description {
    font-size: 15.5px;
  }
  .cta-content-inner {
    gap: 22px;
  }
  .cta-section .cta-buttons {
    gap: 14px;
  }
  .cta-section .cta-separator {
    font-size: 15px;
    margin: 0 6px;
  }
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    padding: 15px 36px;
    font-size: 15px;
  }
}

/* Desktop (1024px - 1200px) */
@media (max-width: 1024px) {
  .cta-section .section-title {
    font-size: 38px;
  }
  .cta-section .cta-content {
    gap: 50px;
  }
  .cta-content-inner {
    gap: 22px;
  }
  .cta-section .cta-description {
    font-size: 15.5px;
  }
  .cta-section .cta-buttons {
    gap: 14px;
  }
  .cta-section .cta-separator {
    font-size: 15px;
    margin: 0 6px;
  }
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    padding: 15px 36px;
    font-size: 15px;
  }
}

/* Tablet Landscape (900px - 1024px) */
@media (max-width: 1024px) and (min-width: 901px) {
  .cta-section .cta-content {
    flex-direction: row;
    gap: 45px;
  }
  .cta-section .section-title {
    font-size: 36px;
    margin-bottom: 0;
  }
  .cta-content-inner {
    gap: 20px;
  }
  .cta-section .cta-description {
    font-size: 15px;
    line-height: 1.7;
  }
  .cta-section .cta-buttons {
    gap: 12px;
  }
  .cta-section .cta-separator {
    font-size: 15px;
    margin: 0 6px;
  }
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    padding: 14px 30px;
    font-size: 15px;
  }
}

/* Tablet Portrait (768px - 900px) */
@media (max-width: 900px) and (min-width: 769px) {
  .cta-section .cta-content {
    flex-direction: row;
    gap: 40px;
  }
  .cta-section .section-title {
    font-size: 36px;
    text-align: left;
    margin-bottom: 0;
  }
  .cta-content-inner {
    gap: 20px;
    flex-direction: column;
  }
  .cta-section .cta-description {
    font-size: 15px;
    line-height: 1.7;
  }
  .cta-section .cta-buttons {
    flex-wrap: nowrap;
    gap: 12px;
  }
  .cta-section .cta-separator {
    font-size: 15px;
    margin: 0 6px;
  }
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    flex: 0 1 auto;
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }
  .cta-section .cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    text-align: left;
  }
  .cta-section .section-title {
    font-size: 32px;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.3;
    width: 100%;
    max-width: 100%;
  }
  .cta-content-inner {
    gap: 18px;
    width: 100%;
    flex-direction: column;
  }
  .cta-section .cta-description {
    font-size: 15px;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.65;
  }
  .cta-section .cta-buttons {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
  }
  .cta-section .cta-separator {
    display: inline;
    font-size: 14px;
    margin: 0 4px;
    flex-shrink: 0;
  }
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    flex: 1 1 0;
    min-width: 140px;
    padding: 14px 20px;
    font-size: 14px;
    text-align: center;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .cta-section {
    padding: 50px 20px;
  }
  .cta-section .cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cta-section .section-title {
    font-size: 28px;
    margin-bottom: 0;
    line-height: 1.3;
    width: 100%;
    max-width: 100%;
  }
  .cta-content-inner {
    gap: 16px;
    width: 100%;
  }
  .cta-section .cta-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cta-section .cta-separator {
    display: none;
  }
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    text-align: center;
  }

  /* 480px 以下将 12px、13px、14px 字体设置为 1.1rem */
  .cta-section .cta-description,
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    font-size: 1.1rem !important;
  }
}
