
  .ai-models-container {
    max-width: 1280px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .models-menu {
       display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    align-items: center;
  }
  
  .menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .menu-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .menu-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
  
  .menu-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .menu-subtitle {
    font-size: 14px;
    color: #666;
  }
  
  .models-content {
    padding: 20px;
    background-image: url("https://portal.volccdn.com/obj/volcfe/bee_prod/biz_950/tos_34f8dbb7ee741c70a674e5a6afc93883.jpg");
    border-radius: 10px;
  }
  
  .content-header {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .content-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .content-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .view-all-link {
    color: #1677ff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 10px;
  }
  
  .model-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .model-card {
    position: relative;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  

  
  .model-image {
       position: relative;
    top: 15px;
    left: 10px;:
    width: 50px;
    height: 50px;
  }
  
  .model-title {
    padding: 15px 15px 5px;
    font-size: 18px;
    font-weight: 600;
  }
  
  .highlight {
    color: #1677ff;
  }
  
  .model-type {
    display: flex;
    align-items: center;
    padding: 0 15px 10px;
    font-size: 14px;
    color: #666;
  }
  
  .type-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
  
  .model-info {
    padding: 15px;
    border-top: 1px solid #eee;
  }
  
  .model-description {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .model-links {
    display: flex;
    gap: 10px;
  }
  
  .model-link {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #1677ff;
    border: 1px solid #1677ff;
    transition: all 0.3s ease;
  }
  
  .model-link:hover {
    background-color: rgba(22, 119, 255, 0.05);
  }
  
  .model-link.primary {
    background-color: #1677ff;
    color: white;
  }
  
  .model-link.primary:hover {
    background-color: #0e5ecc;
  }