.services-container-wrapper {
  background-color: #f5f5f5;
  padding: 15px 0;
  margin: 20px 0;
}
.services-container {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  max-width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.services-header {
  margin-bottom: 15px;
}
.services-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a4d80;
  margin: 0 0 15px 0;
  padding: 0;
}
.service-categories-list {
  margin: 0;
  padding: 0;
}
.service-category-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-category-item:hover {
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border-color: #d0d0d0;
}
.service-category-header {
  display: flex;
  align-items: center;
  padding: 0;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
}
.service-category-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}
.service-category-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 50%;
}
.service-icon-placeholder {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #4a90e2;
}
.service-category-title {
  flex: 1;
  font-size: 13px;
  color: #333333;
  font-weight: 500;
  line-height: 1.4;
  padding-right: 8px;
  margin: 0;
  word-wrap: break-word;
}
.service-category-chevron {
  margin-left: auto;
  color: #4a90e2;
  width: 16px;
  text-align: right;
  flex-shrink: 0;
}
.service-category-services {
  flex: 1;
}
.service-category-chevron i {
  font-size: 11px;
  transition: transform 0.3s ease;
}
.service-category-item.active {
  border-color: #4a90e2;
  border-width: 2px;
  background-color: #f0f7ff;
}
.service-category-item.active .service-category-header {
  background-color: transparent;
}
.service-category-item.active .service-category-title {
  color: #1a4d80;
  font-weight: 600;
}
.services-content-container {
  margin-top: 25px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
}
.services-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 2px solid #4a90e2;
}
.services-content-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a4d80;
  margin: 0;
}
.services-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.services-close-btn:hover {
  color: #333;
}
.service-category-content {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.service-item-card {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  transition: all 0.2s ease;
  background: #ffffff;
}
.service-item-card:hover {
  border-color: #4a90e2;
  box-shadow: 0 2px 4px rgba(74, 144, 226, 0.1);
}
.service-item-icon-wrapper {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}
.service-item-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 4px;
}
.service-item-icon-wrapper i {
  color: #4a90e2;
  font-size: 18px;
}
.service-item-name {
  flex: 1;
  font-size: 13px;
  color: #333;
  line-height: 1.4;
  word-wrap: break-word;
  font-weight: 500;
}

