/* ===== eSIM & VPN Services 页面样式 ===== */
.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  /* 卡片通用样式 */
  .services-card {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .services-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }
  
  /* 标题样式 */
  .services-card h2, .services-card h3 {
    color: #333;
    margin-bottom: 15px;
  }
  
  .services-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  /* 列表样式 */
  .services-card ul {
    margin: 0;
    padding-left: 20px;
    color: #444;
  }
  
  .services-card ul li {
    margin-bottom: 8px;
  }
  
  /* ===== 布局控制 ===== */
  
  /* 全宽卡片 */
  .full-width {
    width: 100%;
  }
  
  /* 双列卡片布局 */
  .services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  /* 半宽卡片（自适应） */
  .half-width {
    flex: 1;
    min-width: 280px;
    max-width: calc(50% - 10px);
  }
  

/* VPN 按钮样式 */
.vpn-button {
    float: right; /* 按钮靠右 */
    padding: 12px 24px;
    background-color: #E64A19;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.vpn-button:hover {
    background-color: #bf3b14; /* hover 深色 */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.vpn-button:active {
    transform: translateY(0);
    box-shadow: none;
}




/* Saily eSIM Plans */
.esim-button {
    float: right;                /* 右对齐 */
    padding: 12px 24px;
    background-color: #E64A19;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.esim-button:hover {
    background-color: #f4511e;   /* 悬停颜色 */
    transform: translateY(-2px); /* 悬停上移效果 */
}

.esim-button:active {
    background-color: #d84315;   /* 点击颜色 */
    transform: translateY(0);    /* 点击恢复 */
}



.services-card.half-width img {
    width: 100%;
    height: 200px;       /* 调整到你希望的统一高度 */
    object-fit: cover;   /* 保持比例，裁剪超出部分 */
}










  /* 小屏幕下改为单列 */
  @media (max-width: 768px) {
    .services-wrapper {
      padding: 20px 15px;
    }
  
    .services-card {
      padding: 20px;
    }
  
    .half-width {
      max-width: 100%;
    }
  }
  
  /* ===== 视觉细节优化 ===== */
  .services-card h2::after, .services-card h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #ff6600;
    margin-top: 6px;
    border-radius: 2px;
  }
  