 body {
      font-family: 'Segoe UI', sans-serif;
      background: #eef2f3;
      margin: 0;
      padding: 40px 20px;
    }

    .search-box {
      background: #003087;
      padding: 20px;
      border-radius: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: flex-start;
      color: #fff;
    }

    .trip-types {
      width: 100%;
      display: flex;
      gap: 15px;
      margin-bottom: 10px;
      align-items: center;
      font-size: 14px;
    }

    .trip-types label {
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
    }

    .form-group {
      position: relative;
      flex: 1;
      min-width: 180px;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 12px;
      border-radius: 6px;
      border: none;
      font-size: 14px;
      box-sizing: border-box;
    }

    .form-group input[type="text"],
    .form-group input[type="date"] {
      color: #333;
    }

    .traveler-trigger {
      padding: 12px;
      background: #fff;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
      color: #333;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .traveler-box {
      position: absolute;
      top: 100%;
      right: 0;
      width: 250px;
      background: #fff;
      border: 1px solid #ccc;
      padding: 15px;
      border-radius: 6px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
      display: none;
      z-index: 999;
      color: #333;
    }

    .counter-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
      font-size: 13px;
    }

    .counter {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .counter button {
      width: 28px;
      height: 28px;
      font-size: 16px;
      background: #f1f1f1;
      border: 1px solid #ccc;
      border-radius: 4px;
      cursor: pointer;
    }

    .traveler-box select {
      width: 100%;
      padding: 8px;
      margin-top: 10px;
    }

    .traveler-box button {
      width: 100%;
      margin-top: 10px;
      background: #f36c21;
      color: white;
      border: none;
      padding: 10px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
    }

    .search-btn {
      background: #f36c21;
      color: #fff;
      padding: 12px 20px;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      cursor: pointer;
      flex: 0 0 auto;
    }

    .suggestions {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border: 1px solid #ccc;
      z-index: 1000;
      max-height: 150px;
      overflow-y: auto;
      display: none;
      color: #333;
    }

    .suggestions div {
      padding: 10px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
    }

    .suggestions div:hover {
      background: #f4f4f4;
    }

    .visa-info {
      position: absolute;
      bottom: -22px;
      left: 0;
      background: #e8f8e0;
      color: #2e7d32;
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 4px;
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .search-box {
        flex-direction: column;
        align-items: stretch;
      }
      .visa-info {
        position: static;
        margin-top: 4px;
      }
    }