.category-description {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0 auto;
}

.category-description h2 {
  color: #2c3e50;
  border-bottom: 3px solid #05a9c3;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.intro-text {
  background: #f8f9fa;
  padding: 15px 20px;
  border-left: 4px solid #05a9c3;
  margin-bottom: 20px;
}

.intro-text *:last-child {
  margin-bottom: 0;
}

.product-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.product-type {
  background: #fff;
  border: 2px solid #05a9c3;
  padding: 15px;
  border-radius: 5px;
  transition: all 0.3s;
}

.product-type:hover {
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
  transform: translateY(-2px);
}

.product-type h4 {
  color: #05a9c3;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.product-type *:last-child {
  margin-bottom: 0;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  column-count: 3;
  column-gap: 30px;
}

.feature-list li {
  padding: 0 0 0 30px;
  position: relative;
}

.feature-list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #05a9c3;
  font-weight: bold;
}

.usage-list {
  list-style: none;
  padding-left: 0;
  column-count: 3;
  column-gap: 30px;
  list-style-position: inside;
}

.usage-list li {
  padding: 0 0 0 30px;
  position: relative;
}

.usage-list li:before {
  content: ">";
  position: absolute;
  left: 3px;
}

.cta-section {
  background: #ff9010;
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
}

.cta-text, p.cta-text {
  margin: 0;
  font-size: 16px;
}

.accordion-section {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
}

.accordion-toggle {
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.accordion-toggle:hover {
  color: #ee7523;
}

.accordion-content {
  margin-top: 15px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .feature-list, .usage-list {
    column-count: 1;
  }

  .product-types {
    grid-template-columns: 1fr;
  }
}
