.contact-wrapper * {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.contact-wrapper .map-container {
  width: 100%;
  height: 400px;
}

.contact-wrapper .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-wrapper .contact-section {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 2rem;
  background: #f5f5f5;
}

.contact-wrapper .contact-info {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-wrapper .contact-info img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-top: 1rem;
}

.contact-wrapper .contact-info p,
.contact-wrapper .contact-info a {
  margin: 0.5rem 0;
  color: #333;
  text-decoration: none;
}

.contact-wrapper .contact-form {
  flex: 2;
  min-width: 300px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-wrapper .contact-form h2 {
  margin-bottom: 0.5rem;
}

.contact-wrapper .required {
  color: red;
}

.contact-wrapper form .row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.contact-wrapper form input,
.contact-wrapper textarea {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.contact-wrapper textarea {
  resize: vertical;
  margin-bottom: 1rem;
}

.contact-wrapper button {
  padding: 0.75rem 1.5rem;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.contact-wrapper button:hover {
  background: #555;
}

.contact-wrapper .newsletter {
  margin-top: 2rem;
}

.contact-wrapper .newsletter form {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.contact-wrapper .newsletter input {
  flex: 2;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-wrapper .newsletter-btn {
  flex: 1;
  background: #00c853;
  color: #fff;
}

.contact-wrapper .newsletter-btn:hover {
  background: #00a74f;
}

@media screen and (max-width: 768px) {
  .contact-wrapper .contact-section {
    flex-direction: column;
  }

  .contact-wrapper .row {
    flex-direction: column;
  }

  .contact-wrapper .newsletter form {
    flex-direction: column;
  }
}
