/* 


.contact-page {
  padding: 60px 20px;
  padding-top:160px;
}

.contact-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  background: white;
  padding: 40px;
  border-radius: 14px;
  border: 1px solid #eee;
  margin-bottom: 40px;
}

.contact-info h1 {
  margin-bottom: 10px;
  font-size: 22px;
  font-family: 'roboto-medium';
}

.contact-info p {
  color: #666;
  margin-bottom: 25px;
}

.info-item {
  margin-bottom: 15px;
}

.info-item strong {
  display: block;
  margin-bottom: 3px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0F3B3E;
}

.input-row {
  display: flex;
  gap: 12px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #0F3B3E;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s;
}

.contact-form button:hover {
  background: #1F5A60;
}

.map-section {
  max-width: 1000px;
  margin: auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
}


@media (max-width: 768px) {

  .contact-container {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .input-row {
    flex-direction: column;
  }

  .map-section iframe {
    height: 280px;
  }
} */