.contact-section {
  background: #101113;
  padding: 48px 0 64px 0;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-info, .contact-form {
  background: #18191b;
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1;
  min-width: 320px;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact-row {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
}

.contact-row i {
  margin-right: 14px;
  margin-top: 4px;
  font-size: 1.2rem;
  color: #12d2e1;
  min-width: 20px;
}

.contact-label {
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-link {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}
.contact-link:hover {
  color: #12d2e1;
}

.contact-form form {
  width: 100%;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #232325;
  color: #fff;
  font-size: 1rem;
  resize: none;
  outline: none;
  transition: background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #232335;
}

.contact-btn {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: #232325;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.contact-btn:hover {
  background: #12d2e1;
  color: #18191b;
}

.contact-info .space_between{
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 20px;
    flex-wrap: wrap;
    word-break: break-all;
}