/* IE浏览器特定样式 */
.ie-panel {
  display: none;
  background: #212121;
  padding: 10px 0;
  box-shadow: 3px 3px 5px 0 rgba(0,0,0,.3);
  clear: both;
  text-align: center;
  position: relative;
  z-index: 1;
}

html.ie-10 .ie-panel, html.lt-ie-10 .ie-panel {
  display: block;
}

/* 移动端容器样式优化 */
@media (max-width: 576px) {
  .section-lg .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }
  
  .section .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section-lg .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
  
  .section .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
}

/* 面包屑导航区域 */
.breadcrumbs-custom {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/banner/banner-joinus.png') !important;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/banner/banner-joinus.png') !important;
  background-size: 100% auto !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
  min-height: 350px;
  padding-top: 100px;
  padding-bottom: 75px;
}

.breadcrumbs-custom h2 {
  color: #fff;
}

/* 职位详情区域 */
#details-1, #details-2, #details-3, #details-4, #details-5, #details-6 {
  display: none;
  width: 100%;
  box-sizing: border-box;
  margin-top: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(4, 59, 160, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

#details-1[style*="display: block"], 
#details-2[style*="display: block"], 
#details-3[style*="display: block"], 
#details-4[style*="display: block"], 
#details-5[style*="display: block"], 
#details-6[style*="display: block"] {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* 查看详情按钮 */
#btn-details-1, #btn-details-2, #btn-details-3, #btn-details-4, #btn-details-5, #btn-details-6 {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 20px;
  color: #043ba0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(4, 59, 160, 0.2);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#btn-details-1:hover, #btn-details-2:hover, #btn-details-3:hover, #btn-details-4:hover, #btn-details-5:hover, #btn-details-6:hover {
  background: linear-gradient(135deg, #043ba0 0%, #022F80 100%);
  color: #fff;
  border-color: #043ba0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 59, 160, 0.3);
}

/* 福利待遇卡片样式 */
.benefit-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(4, 59, 160, 0.1);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #043ba0 0%, #022F80 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(4, 59, 160, 0.15);
  border-color: rgba(4, 59, 160, 0.2);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 40px;
  color: #043ba0;
  background: linear-gradient(135deg, rgba(4, 59, 160, 0.15) 0%, rgba(4, 59, 160, 0.1) 100%);
  padding: 24px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(4, 59, 160, 0.15);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(4, 59, 160, 0.2) 0%, rgba(4, 59, 160, 0.15) 100%);
}

.benefit-title {
  color: #1e293b;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
  color: #043ba0;
}

.benefit-description {
  color: #64748b;
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 0;
}

/* 不同背景色的section */
section.bg-default {
  /* background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); */
}

section.bg-gray-100 {
  /* background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%); */
}

/* 标题样式 */
.section-title {
  margin-bottom: 25px;
  color: #1e293b;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 32px;
  position: relative;
  padding-bottom: 20px;
  text-align: center;
  justify-content: center;
}

.section-title i {
  color: #043ba0;
  background: linear-gradient(135deg, rgba(4, 59, 160, 0.1) 0%, rgba(4, 59, 160, 0.05) 100%);
  padding: 16px;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(4, 59, 160, 0.15);
}

.section-desc {
  margin-bottom: 40px;
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 服务详情标题 */
.fw-bold-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  color: #1e293b;
  font-size: 28px;
  font-weight: 700;
}

.fw-bold-title i {
  color: #043ba0;
  background: linear-gradient(135deg, rgba(4, 59, 160, 0.15) 0%, rgba(4, 59, 160, 0.1) 100%);
  padding: 16px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(4, 59, 160, 0.15);
  transition: transform 0.3s ease;
}

.fw-bold-title:hover i {
  transform: rotate(5deg) scale(1.1);
}

/* Banner副标题样式 */
.big.breadcrumbs-custom-subtitle {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  position: static !important;
}

.big.breadcrumbs-custom-subtitle::before {
  display: none !important;
}

/* 服务详情段落 */
.big:not(.breadcrumbs-custom-subtitle) {
  line-height: 1.9;
  color: #475569;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-left: 6px solid #043ba0;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 6px 25px rgba(4, 59, 160, 0.08);
  margin-bottom: 40px;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.big:not(.breadcrumbs-custom-subtitle)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #043ba0 0%, #022F80 100%);
  border-radius: 6px 0 0 6px;
}

.big:not(.breadcrumbs-custom-subtitle):hover {
  box-shadow: 0 8px 30px rgba(4, 59, 160, 0.12);
  transform: translateY(-2px);
}

/* 自定义标题样式 */
.custom-title {
  color: #043ba0;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #043ba0 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.custom-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #043ba0 0%, #06b6d4 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(4, 59, 160, 0.3);
}

.custom-title::after {
  content: '';
  position: absolute;
  left: 85px;
  bottom: 8px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #06b6d4 0%, transparent 100%);
  border-radius: 1px;
  opacity: 0.6;
}

/* 表格样式 */
.table-custom {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px;
}

.table-custom tr {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(4, 59, 160, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.table-custom tr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #043ba0 0%, #022F80 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.table-custom tr:hover {
  box-shadow: 0 8px 30px rgba(4, 59, 160, 0.12);
  transform: translateY(-2px);
}

.table-custom tr:hover::before {
  transform: scaleX(1);
}

.table-custom td {
  padding: 25px;
  vertical-align: top;
  width: auto;
}

.table-custom td:nth-child(2) {
  width: 100%;
}

.table-custom .heading-5 {
  color: #1e293b;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.table-custom tr:hover .heading-5 {
  color: #043ba0;
}

.table-custom .small {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.table-custom .small.text-gray-500 {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 20px;
}

.table-custom ul.small {
  margin-top: 15px;
  padding-left: 20px;
  list-style-type: disc;
}

.table-custom ul.small li {
  margin-bottom: 8px;
}

.table-custom .big.exeption {
  color: #043ba0;
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(4, 59, 160, 0.15) 0%, rgba(4, 59, 160, 0.1) 100%);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
}

.big.exeption i {
  color: #ff6b35;
  font-size: 24px;
  display: inline-block;
  animation: flame 1.5s ease-in-out infinite;
}

@keyframes flame {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* 页脚区域 */
.button {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.button-primary {
  background: linear-gradient(135deg, #043ba0 0%, #022F80 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(4, 59, 160, 0.3);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 59, 160, 0.4);
  color: #fff;
}

.button-secondary {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #043ba0;
  border: 1px solid rgba(4, 59, 160, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.button-secondary:hover {
  background: linear-gradient(135deg, #043ba0 0%, #022F80 100%);
  color: #fff;
  border-color: #043ba0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 59, 160, 0.3);
}

.button-sm {
  padding: 8px 20px;
  font-size: 13px;
}

/* 流程图样式 */
.process-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px 0;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  flex-shrink: 0;
}

.flow-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #043ba0 0%, #022F80 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(4, 59, 160, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.flow-step:hover .flow-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(4, 59, 160, 0.4);
}

.flow-label {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
}

.flow-arrow {
  font-size: 20px;
  color: #043ba0;
  font-weight: bold;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.flow-step:hover + .flow-arrow {
  transform: translateX(5px);
  color: #06b6d4;
}

/* 流程说明样式 */
.process-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}

.process-detail-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(4, 59, 160, 0.1);
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.process-detail-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #043ba0 0%, #022F80 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.process-detail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(4, 59, 160, 0.15);
  border-color: rgba(4, 59, 160, 0.2);
}

.process-detail-item:hover::before {
  transform: scaleX(1);
}

.detail-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #043ba0 0%, #022F80 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(4, 59, 160, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.process-detail-item:hover .detail-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(4, 59, 160, 0.4);
}

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

.detail-content h4 {
  color: #1e293b;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
  white-space: nowrap;
  min-width: 120px;
}

.process-detail-item:hover .detail-content h4 {
  color: #043ba0;
}

.detail-content p {
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

/* 招聘流程步骤样式（保留原有样式作为备用） */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.process-step {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(4, 59, 160, 0.1);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #043ba0 0%, #022F80 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(4, 59, 160, 0.15);
  border-color: rgba(4, 59, 160, 0.2);
}

.process-step:hover::before {
  transform: scaleX(1);
}

.step-number {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #043ba0 0%, #022F80 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(4, 59, 160, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(4, 59, 160, 0.4);
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-content h4 {
  color: #1e293b;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.process-step:hover .step-content h4 {
  color: #043ba0;
}

.step-content p {
  color: #64748b;
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
}

.step-detail {
  color: #94a3b8;
  font-size: 13px;
  font-style: italic;
  margin-top: 3px;
}



/* 响应式调整 */
@media (max-width: 1200px) {
  .table-custom td {
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 28px;
  }
  
  .custom-title {
    font-size: 28px;
  }
  
  .custom-title::before {
    width: 60px;
  }
  
  .custom-title::after {
    left: 65px;
    width: 30px;
  }
  
  .benefit-card {
    padding: 25px;
  }
  
  .benefit-icon {
    font-size: 36px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .table-custom td {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  
  .custom-title {
    font-size: 24px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .custom-title::before {
    width: 50px;
  }
  
  .custom-title::after {
    left: 55px;
    width: 25px;
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  .benefit-icon {
    font-size: 32px;
    padding: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .benefit-title {
    font-size: 18px;
  }
  
  .table-custom {
    display: block;
    border-spacing: 0;
  }
  
  .table-custom tbody {
    display: block;
  }
  
  .table-custom tr {
    display: block;
    margin-bottom: 20px;
    border-radius: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(4, 59, 160, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }
  
  .table-custom td {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: left;
    border: none;
  }
  
  .table-custom td:first-child {
    display: none;
  }
  
  .table-custom td:nth-child(2) {
    padding-top: 0;
  }
  
  .table-custom td:nth-child(3) {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(4, 59, 160, 0.1);
  }
  
  .table-custom td:nth-child(4) {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(4, 59, 160, 0.1);
  }
  
  .table-custom .button {
    width: 100%;
    display: block;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .process-step {
    padding: 18px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .step-content h4 {
    font-size: 16px;
  }
  
  .step-content p {
    font-size: 13px;
  }
  
  .step-detail {
    font-size: 12px;
  }
  
  .process-flow {
    gap: 6px;
    margin: 25px 0;
  }
  
  .flow-step {
    gap: 4px;
  }
  
  .flow-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .flow-label {
    font-size: 12px;
  }
  
  .flow-arrow {
    font-size: 18px;
  }
  
  .process-details {
    gap: 12px;
  }
  
  .process-detail-item {
    padding: 15px 18px;
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .detail-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .detail-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .detail-content h4 {
    font-size: 16px;
    min-width: auto;
  }
  
  .detail-content p {
    font-size: 13px;
  }
  
  .big.exeption i {
    font-size: 20px;
  }
  
  .table-custom td {
    padding: 12px;
  }
  
  .table-custom .heading-5 {
    font-size: 18px;
  }
  
  .button {
    padding: 8px 20px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 22px;
  }
  
  .custom-title {
    font-size: 20px;
  }
  
  .custom-title::before {
    width: 40px;
  }
  
  .custom-title::after {
    left: 45px;
    width: 20px;
  }
  
  .section-desc {
    font-size: 15px;
  }
  
  .benefit-card {
    padding: 15px;
  }
  
  .benefit-icon {
    font-size: 28px;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .table-custom tr {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .table-custom .heading-5 {
    font-size: 16px;
  }
  
  .table-custom .small {
    font-size: 13px;
  }
  
  .big.exeption {
    font-size: 16px;
    padding: 8px 16px;
  }
  
  .big.exeption i {
    font-size: 20px;
  }
  
  #details-1, #details-2, #details-3, #details-4, #details-5, #details-6 {
    padding: 15px;
  }
  
  #details-1 ul, #details-2 ul, #details-3 ul, #details-4 ul, #details-5 ul, #details-6 ul {
    padding-left: 15px;
  }
  
  #details-1 li, #details-2 li, #details-3 li, #details-4 li, #details-5 li, #details-6 li {
    margin-bottom: 6px;
    font-size: 13px;
  }
  
  .process-flow {
    gap: 4px;
    margin: 20px 0;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 10px 5px;
  }
  
  .flow-step {
    gap: 3px;
  }
  
  .flow-number {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  
  .flow-label {
    font-size: 11px;
  }
  
  .flow-arrow {
    font-size: 16px;
  }
  
  .process-details {
    gap: 10px;
    margin-top: 30px;
  }
  
  .process-detail-item {
    padding: 12px 15px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .detail-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .detail-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .detail-content h4 {
    font-size: 15px;
    min-width: auto;
  }
  
  .detail-content p {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process-step {
    padding: 20px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .step-content h4 {
    font-size: 18px;
  }
  
  .step-content p {
    font-size: 14px;
  }
  
  .step-detail {
    font-size: 13px;
  }
}
