.contact-hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #072E33, #0F7075);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 40px 20px;
}

.contact-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-left {
  flex: 1 1 400px;
}

.contact-left h1 {
  color: #fff;    
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-right {
  flex: 1 1 400px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  color: #000;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form button {
  padding: 12px 24px;
  background-color: #0F7075;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 16px;
}

.contact-form button:hover {
  background-color: #0a5a60;
}

.form-success {
  background-color: #d4edda;
  color: #155724;
  padding: 14px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 14px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-left,
  .contact-right {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
