.contact-section {
  padding: 60px 20px;
  background-color: #f9f4ed;
  font-family: 'Segoe UI', sans-serif;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  color: #7b2e10;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 28px;
}

.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-info, .contact-form {
  flex: 1 1 45%;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info p {
  margin: 12px 0;
  font-size: 16px;
  color: #333;
}

.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

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

.contact-form form button {
  text-align: center;
}

.contact-form label {
  margin-top: 15px;
  font-weight: 600;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #a52a2a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #8b1a1a;
}

.contact-info i {
  margin-right: 8px;
  color: #a52a2a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-info, .contact-form {
    flex: 1 1 100%;
  }
}
