.enhanced-cta-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.enhanced-cta-container {
  width: 100%;
}

.enhanced-cta-card {
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  max-width: 5xl;
  margin: 0 auto;
  background: white;
}

.enhanced-cta-content {
  text-align: center;
  max-width: 3xl;
  margin: 0 auto;
}

.enhanced-cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #00476b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.enhanced-cta-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.enhanced-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* 使用与pouch-battery-afg-line.php页面一致的按钮样式 */
.enhanced-cta-btn {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  cursor: pointer;
}

/* 主按钮样式 */
.enhanced-cta-btn-primary {
  background-color: #00476b;
  color: white;
}

.enhanced-cta-btn-primary:hover {
  background-color: #003a57;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 次按钮样式 - 与pouch-battery-afg-line.php完全一致 */
.enhanced-cta-btn-secondary {
  background-color: white;
  color: #00476b;
  border: 1px solid #00476b;
}

.enhanced-cta-btn-secondary:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 响应式设计 */
@media (min-width: 640px) {
  .enhanced-cta-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
  
  .enhanced-cta-card {
    padding: 3rem;
  }
}

@media (max-width: 639px) {
  .enhanced-cta-section {
    padding: 3rem 0;
  }
  
  .enhanced-cta-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }
  
  .enhanced-cta-btn {
    width: 100%;
  }
}

/* 按钮点击效果 */
.enhanced-cta-btn:active {
  transform: translateY(0);
}

.enhanced-cta-btn-primary:active {
  background-color: #002d42;
}

.enhanced-cta-btn-secondary:active {
  background-color: #e2e8f0;
}