body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background: #f5f5f5;
  color: #333;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-section,
.info-section {
  flex: 1 1 400px;
}

form {
  display: flex;
  flex-direction: column;
}

form h2,
.info-section h2 {
  color: #0066cc;
}

label {
  margin-top: 10px;
  font-weight: bold;
}

input,
textarea {
  margin-top: 5px;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  resize: vertical;
  height: 100px;
}

.captcha {
  margin: 20px 0;
}

.btn-submit {
  padding: 12px;
  background: #0066cc;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}

.btn-submit:hover {
  background: #004c99;
}

.social-icons img {
  width: 32px;
  margin-right: 10px;
}

.extra-info i {
  margin-right: 8px;
  color: #0066cc;
}

a {
  color: #0066cc;
  text-decoration: none;
}
