.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: #fafafa;
  padding: 50px 50px;
}

.get-in-touch,
.send-message {
  flex: 1 1 350px;
  background: #fafafa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.get-in-touch h3,
.send-message h3 {
  color: #557c00;
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-bottom: 1.5rem;
}

.info-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.info-block i {
  font-size: 1.7rem;
  color: #557c00;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.social-icons a {
  color: #557c00;
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: color 0.2s;
}
.social-icons i {
  transition: ease-in 0.3s;
}
.social-icons i:hover {
  transform: scale(1.2);
}

.send-message form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.send-message input,
.send-message textarea {
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}

.send-message input:focus,
.send-message textarea:focus {
  border: 1.5px solid #f37021;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.captcha-box {
  background: #b08b53;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.send-message button {
  background: #557c00;
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #557c00;
  transition: background 0.2s;
}

.send-message button:hover {
  background-color: #fafafa;
  border: 1px solid green;
  color: green;
}
.info-block a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}
.info-block a:hover {
  color: green;
}

@media (max-width: 900px) {
  .contact-content {
    padding: 20px;
    flex-direction: column;
  }
}
