/* General Reset */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #000000;
  color: #ffffff;
}

/* Services Section */
.services-dark {
  background: #000000;
  padding: 80px 20px;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.service-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.service-column h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
}

.service-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-column ul li {
  margin-bottom: 15px;
  border-bottom: 1px solid #444444;
  padding-bottom: 8px;
  color: #cccccc;
  font-weight: 300;
}
