.card {
  padding: 10px;
}

.header {
  display: flex;
  align-items: center; 
  justify-content: space-between; 
  flex-wrap: wrap;          
  border-radius:12px;
  background:linear-gradient(135deg,var(--accent),white);
  color:white;
  font-weight:700;
  font-size:22px;
}

.general-informations {
  flex: 1 1 auto; 
  margin-right: 20px; 
  white-space: nowrap; 
  color: white; 
  font-family: 'Inter', sans-serif; 
  text-align: left; 
  padding: 20px; 
  border-radius: 8px; 
}

.general-informations h3{
  margin:15px 0 15px;
  font-size:20px;
  color:var(white);
}

.download-section {
  display: flex;
  flex-direction: column;  
  text-align: center;
  gap: 10px;               
  flex-shrink: 0;          
  padding: 20px; 
}

.download {
  display: inline-block;
  margin: 6px;
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--accent, #28a745);
  color: white;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.download:hover {
  background-color: #1e7e34;
}


.contact a{color:var(--accent);text-decoration:none;}