 .aim-car-wrap {
    max-width: 900px;
    margin: 48px auto;
    padding: 32px 16px 40px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .aim-car-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1a2b4c;
    margin: 0 0 24px;
  }

  .aim-car-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
  }

  .aim-car-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .aim-car-card {
    position: absolute;
    width: 190px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease, z-index 0.5s;
    cursor: pointer;
  }

  .aim-car-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .aim-car-card.aim-center {
    transform: translateX(0) scale(1.15);
    filter: grayscale(0%);
    z-index: 5;
    box-shadow: 0 16px 34px rgba(0,0,0,0.35);
  }

  .aim-car-card.aim-left1 {
    transform: translateX(-160px) scale(0.85);
    filter: grayscale(100%);
    opacity: 0.85;
    z-index: 4;
  }

  .aim-car-card.aim-left2 {
    transform: translateX(-280px) scale(0.7);
    filter: grayscale(100%);
    opacity: 0.6;
    z-index: 3;
  }

  .aim-car-card.aim-right1 {
    transform: translateX(160px) scale(0.85);
    filter: grayscale(100%);
    opacity: 0.85;
    z-index: 4;
  }

  .aim-car-card.aim-right2 {
    transform: translateX(280px) scale(0.7);
    filter: grayscale(100%);
    opacity: 0.6;
    z-index: 3;
  }

  .aim-car-card.aim-hidden {
    opacity: 0;
    transform: scale(0.5);
    z-index: 1;
    pointer-events: none;
  }

  .aim-car-arrow {
    background: #fff;
    border: 1px solid #ddd;
    color: #1a2b4c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    z-index: 10;
    flex-shrink: 0;
    margin: 0 10px;
  }

  .aim-car-arrow:hover { background: #f0f4ff; }

  .aim-car-caption {
    margin-top: 20px;
  }

  .aim-car-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1a2b4c;
  }

  .aim-car-role {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    color: #8a93a6;
    margin-top: 4px;
  }

  .aim-car-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .aim-car-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4d9e5;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }

  .aim-car-dot.aim-active {
    background: #1a2b4c;
    transform: scale(1.3);
  }

  @media (max-width: 600px) {
    .aim-car-container { height: 220px; }
    .aim-car-card { width: 140px; height: 185px; }
    .aim-car-card.aim-center { transform: translateX(0) scale(1.1); }
    .aim-car-card.aim-left1 { transform: translateX(-105px) scale(0.8); }
    .aim-car-card.aim-left2 { transform: translateX(-180px) scale(0.65); }
    .aim-car-card.aim-right1 { transform: translateX(105px) scale(0.8); }
    .aim-car-card.aim-right2 { transform: translateX(180px) scale(0.65); }
    .aim-car-title { font-size: 20px; }
  }