.kontakt-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
}

.site-kontakt h2 {
  text-align: center;
}

.kontakt-items {
    width: 300px;
    height: 340px;
    background: #fff;
    color: #758482;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 24px;
    border-radius: 8px;
    flex-direction: column;
}

.kontakt-items-img {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 0;
}

.kontakt-items-img img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
}

.kontakt-items-dane {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  padding: 10px;
  font-weight: bold;
}

.kontakt-items-company {
  font-size: 20px;
  height: 20px;
  text-align: center;
}

.kontakt-items-opis {
  font-size: 20px;
  padding: 5px;
}

.kontakt-items-opis a {
  color: #758482;
  text-decoration: none;
}

.kontakt-items-opis a:hover {
  cursor: pointer;
}

.kontakt-items-opis i {
  color: #045ecc;
}

/** Formularz kontaktowy **/
.custom-form-kontakt {
    width: 80%;
    max-width: 900px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container-kontakt {
    display: flex;
    gap: 20px;
}

.form-left-kontakt, .form-right-kontakt {
    flex: 1;
}

.form-group-kontakt {
    margin-bottom: 15px;
}

.form-input-kontakt {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.edytor {
    height: 400px;
}

.form-button-kontakt {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    color: white;
    background: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-button-kontakt:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
  .kontakt-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: inherit;
  }

  .kontakt-items {
    margin: 0 auto;
  }

  .kontakt-container form {
    width: auto !important;
    margin: 0 auto;
  }
}
