.csm-service-search-wrapper {
 
  margin: 1em auto;
  text-align: center;
  padding: 0px 0px 100px 0px;
}
.csm-service-search-bar {
  background: #e6ecf5;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
    margin-bottom: 2rem;
}
.csm-search-group {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  width: 60%;
  text-align: left;
}
.csm-search-group--category {
  width: 30%;
}
.csm-search-group label {
  font-weight: 600;
  color: #002F87;
  margin-bottom: 4px;
}
.csm-search-group input,
.csm-search-group select {
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
    height: 50px;
  color: #002F87;
}
.csm-go-btn {
  padding: 10px 20px;
  background: #002F87;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.csm-go-btn:hover {
  background: #001f60;
}
.csm-suggestion {
  margin-top: 12px;
  font-size: 15px;
  color: #555;
}
.csm-suggestion strong {
  color: #002F87;
}
.cp-service-container {
    background-color: #002F87;
    margin: 0 auto;
    text-align: center;
    padding: 30px 10px;
}
.cp-services-subheading {
    color: #002F87;
    max-width: 550px;
    margin: 0 auto;
    padding: 30px 10px;   
}
.csm-search {
    height: 50px;
    border-radius: 8px !important;
}
.csm-arrow {
    color: #002F87;
}
#csm-suggestion2.is-loading .csm-suggest-loading { display:flex; align-items:center; gap:8px; padding:8px 12px; justify-content: center; }
.csm-spinner {
  width:16px; height:16px; border-radius:50%;
  border:2px solid currentColor; border-right-color:transparent;
  display:inline-block; animation:csm-spin .8s linear infinite;
}

#csm-suggestion2 .csm-sg-list { list-style:none; margin:0; padding:4px 6px 8px; display: flex;
    justify-content: center;}
#csm-suggestion2 .csm-sg-li { display:flex; align-items:center; justify-content:center; gap:8px; padding:6px 6px; }
@keyframes csm-spin { to { transform:rotate(360deg); } }


@media (max-width: 768px) {
  .cp-heading {
    font-size: 26px;
  }
  #csm-suggestion2 .csm-sg-list {
    flex-direction: column;
  }
 .csm-service-search-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .csm-search-group {
    width: 100%;
  }
  .csm-go-btn {
    width: 100%;
  }
  .csm-search-group--category { 
    margin-bottom: 1rem;
  }
}
@media (max-width: 400px) {
  .cp-heading {
    font-size: 24px;
  }
}