@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');


.contact-container {
  display: flex;
  max-width: 1100px;
  margin: 40px auto;
  gap: 40px;
}

.contact-form {
  flex: 1;
  min-width: 60%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: calc(50% - 10px);
  padding: 3px 15px;
  background: #f4f4f4;
  border: none;
  font-size: 14px;
}

.contact-form textarea {
  width: 100%;
  height: 150px;
  resize: none;
}

.send-btn {
    height: 56px;
    border-radius: 12px;
  background-color: #e5093f;
  color: white;
  border: none;
  padding: 5px 20px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}

.contact-info {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
  font-size: 26px;
  margin-bottom: 30px;
}

.info-block {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.icon {
  width: 40px;
  height: 40px;
  background: #e5093f;
  color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 16px;
}

.details small {
  display: block;
  font-size: 14px;
  line-height: 12px;
  font-weight: bold;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.details strong {
  font-size: 16px;
  color: #000;
}

.details p {
    margin-top: 0px;
    font-size: 17px !important;
    line-height: 18px !important;
}

.contact-info hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid #eee;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons i {
  width: 40px;
  height: 40px;
  background: #f4f4f4;
  color: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
}

.form-control {
    width: 45%;
    height: 49px;
    margin-bottom: 30px;
    float: left;
}