/* Section 3: Bilan PDF */
.msv-bilan-pdf {
  width: 100%;
  padding: 40px 0;
  background: #fff;
}
.msv-bilan-pdf-inner {
  background: #dde7e8;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 56px;
  gap: 40px;
}
.msv-bilan-pdf-content {
  flex: 1 1 0;
}
.msv-bilan-pdf-label {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 18px;
  font-family: 'Roboto Condensed', Arial, sans-serif;
}
.msv-bilan-pdf-title {
  font-size: 2rem;
  font-weight: 700;
  color: #005258;
  font-family: 'Roboto Condensed', Arial, sans-serif;
}
.msv-bilan-pdf-action {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.msv-bilan-pdf-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 22px 38px;
  font-size: 1.25rem;
  font-weight: 300;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: none;
  transition: background 0.2s, color 0.2s;
  font-family: 'Roboto Condensed', Arial, sans-serif;
}
.msv-bilan-pdf-btn:hover {
  background: #e0f7fa;
  color: #005258;
}
.msv-bilan-pdf-icon {
  display: flex;
  align-items: center;
  height: 38px;
  width: 38px;
}
.msv-bilan-pdf-icon svg {
  height: 38px;
  width: 38px;
  display: block;
}
@media (max-width: 900px) {
  .msv-bilan-pdf-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding: 32px 16px;
  }
  .msv-bilan-pdf-action {
    justify-content: flex-start;
  }
} 