
.fan-specs-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
}

.fan-specs-title {
  margin-bottom: 30px;
}

.fan-specs-title h2 {
  font-size: 30px;
  font-weight: 600;
  color: #2F3E5C;
  margin: 0;
}

.fan-specs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}

.fan-specs-item {
  width: calc(50% - 20px);
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eaeaea;
}

.fan-specs-name {
  width: 42%;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  line-height: 1.6;
}

.fan-specs-value {
  width: 58%;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {

  .fan-specs-wrap {
    padding: 35px 15px;
  }

  .fan-specs-title h2 {
    font-size: 24px;
  }

  .fan-specs-grid {
    display: block;
  }

  .fan-specs-item {
    width: 100%;
    padding: 12px 0;
  }

  .fan-specs-name {
    width: 45%;
    font-size: 14px;
  }

  .fan-specs-value {
    width: 55%;
    font-size: 14px;
  }
}
