

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
}

.contact-left, .contact-right {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
}

.contact-form button {
  padding: 14px 30px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: var(--color-secondary);
}

.contact-info {
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.contact-info h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--color-primary);
}

.contact-info p, .contact-info a {
  margin: 5px 0;
  color: #333;
  font-size: 16px;
  text-decoration: none;
}

.map iframe {
  width: 100%;
  height: 350px;
  border-radius: 12px;
}

/* Responsywność */

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
}
