.development-section {
  background-color: var(--color-black);
  padding: 50px 40px;
  color: #fff;
  text-align: center;
}

.lod-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  max-width: 1100px;
  margin: 0 auto 60px;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 500;
}

.lod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin-top: 50px;
  max-width: 1400px;
  margin-left: 105px;
  margin-right: -105px;
}

.lod-card {
  background-color: #383838;
  border-radius: 8px;
  padding: 15px 10px;
  transition: all 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lod-card:hover {
  background-color: #454545;
  transform: translateY(-5px);
}

.lod-image-box {
  width: 80px;
  height: 80px;
  background-color: transparent;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Base style for placeholder in case images are missing */
.lod-placeholder-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: absolute;
  z-index: 1;
}

.lod-image-box img {
  width: 95%;
  height: 105%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.lod-info h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #fff;
  font-family: var(--font-heading);
}

.lod-info span {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  display: block;
  font-family: var(--font-body);
}

/* Responsiveness */
@media (max-width: 1200px) {
  .lod-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 20px;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .lod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .development-section {
    padding: 80px 30px;
  }
}

@media (max-width: 576px) {
  .lod-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .development-section {
    padding: 40px 20px;
  }

  .lod-image-box {
    width: 70px;
    height: 70px;
  }
}

