#product-list .section:nth-child(1) {
  border-top: none !important;
}

.section {
  background: white;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 0.75px solid var(--primary);
  margin: 0;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.section-left {
  padding: 60px 50px;
}

.section-right {
  overflow: hidden;
  max-height: 400px;
  padding: 60px 50px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.section-right img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.tools-list {
  list-style: none;
}

.tools-list li {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.tools-list li:hover {
  color: #2c5aa0;
}

.tools-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #2c5aa0;
  font-size: 18px;
}

@media (max-width: 900px) {
  .section-content {
    grid-template-columns: 1fr;
  }

  .section-left {
    padding: 40px 30px;
  }

  .section-right {
    min-height: 300px;
    justify-content: center;
  }

  .section-title {
    font-size: 24px;
  }

  .tools-list li {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .section-left {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .tools-list li {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
