/* Root section */
.our-customers {
  background-color: #f9fafb;
  padding: 60px 20px;
  text-align: center;
}

/* Container */
.our-customers .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Title */
.our-customers .title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

/* Subtitle */
.our-customers .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

/* Customer list */
.our-customers .customer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 20px 30px;
}

/* Each customer */
.our-customers .customer-item {
  font-size: 1rem;
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.our-customers .customer-item:last-child {
  border-bottom: none;
}

/* Hover effect */
.our-customers .customer-item:hover {
  color: #50883f;
  padding-left: 5px;
}

/* Responsive */
@media (max-width: 600px) {
  .our-customers .title {
    font-size: 1.5rem;
  }

  .our-customers .customer-item {
    font-size: 0.95rem;
  }
}
