.partner-block {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  width: auto;
  max-width: 450px;
}

.partner-logo img {
  width: auto;
  height: 100px;
  margin-bottom: 10px;
  height: auto;
}

.partner-content h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #333;
}

.partner-content p {
  margin: 0 0 15px 0;
  color: #666;
  line-height: 1.5;
}

.partner-button .button {
  background: #08b708;
  color: white;
  padding: 4px 16px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
  border: unset;
}

.partner-button .button:hover {
  background:rgb(7, 161, 7);
  color: white;
}

@media (max-width: 600px) {
  .partner-block {
    flex-direction: column;
    text-align: center;
  }
}