.downloads {
  padding-block: clamp(3.125rem, 2.3665rem + 3.2362vw, 6.25rem)
    clamp(1.5625rem, 1.1833rem + 1.6181vw, 3.125rem);
}

.downloads h2 {
  color: #ff6c00;
  font-size: clamp(2rem, 1.5146rem + 2.0712vw, 4rem);
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  padding-bottom: 10px;
  border-bottom: 2px solid #b3c0c7;
}

.accordion-d-item {
  border: none;
  border-bottom: 2px solid #b3c0c7;
}

.accordion-d-header {
  background: none;
  border: none;
  width: 100%;
  padding: clamp(0.9375rem, 0.7858rem + 0.6472vw, 1.5625rem) 0;
  color: #ff6c00;
  font-size: clamp(1.25rem, 1.0073rem + 1.0356vw, 2.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-d-icon svg {
  display: none;
  width: clamp(1.5rem, 1.3483rem + 0.6472vw, 2.125rem);

  height: clamp(1.5rem, 1.3483rem + 0.6472vw, 2.125rem);

  flex-shrink: 0;
}

.accordion-d-item:not(.open) .icon-plus {
  display: block;
}

.accordion-d-item.open .icon-minus {
  display: block;
}

.accordion-d-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}

.accordion-d-item.open .accordion-d-content {
  max-height: 1000px;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16px;
}

.download-item {
  display: flex;
  align-items: center;
  gap: clamp(0.9375rem, 0.71rem + 0.9709vw, 1.875rem);
  text-decoration: none;
  color: #696871;
  font-size: clamp(1rem, 0.9393rem + 0.2589vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: color 0.2s;
  padding: 16px clamp(1rem, 0.818rem + 0.7767vw, 1.75rem);
}

.download-item:hover {
  text-decoration: underline;
}

.download-item .pdf-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .downloads-grid {
    grid-template-columns: 1fr;
  }
}
