.clpa-pdf-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0;
}

.clpa-pdf-box {
  background: #f9f9f9;
  border-left: 5px solid #0073aa;
  padding: 24px 28px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.clpa-pdf-box h3 {
  margin-top: 0;
  font-size: 22px;
  color: #222;
}

.clpa-pdf-content {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.clpa-pdf-files {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.clpa-pdf-files li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 8px;
}

.clpa-pdf-files li .file-name {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #0073aa;
  word-break: break-word;
}

.clpa-pdf-files li .file-name i {
  margin-right: 8px;
  color: red;
  font-size: 18px;
}

.clpa-pdf-files li .download-button {
  background: #0073aa;
  color: #fff;
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
}

.clpa-pdf-files li .download-button:hover {
  background: #005d8f;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .clpa-pdf-box {
    padding: 20px;
  }

  .clpa-pdf-box h3 {
    font-size: 18px;
  }

  .clpa-pdf-content {
    font-size: 14px;
  }

  .clpa-pdf-files li {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .clpa-pdf-files li .download-button {
    padding: 6px 10px;
    font-size: 13px;
  }
}
