.documents {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.card {
  background: white;
  width: 300px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.icon {
  background: #f2f6fb;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon img {
  width: 60px;
  height: 60px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(70%) saturate(2000%) hue-rotate(190deg) brightness(90%) contrast(90%);
}

.type {
  background-color: #c06a58;
  color: white;
  font-weight: bold;
  padding: 10px 0;
  border-radius: 4px;
  margin: 20px 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  color: #6a7a8b;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  background-color: #2ecc71; /* Vert */
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.download-btn:hover {
  background-color: #27ae60;
  transform: scale(1.05);
}
