body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1f2937;
}

.contact-header {
  position: relative;
  margin-top: 64px;
  height: 400px;
  overflow: hidden;
  background-color: #111827;
}

.contact-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
}

.contact-overlay h1 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 600;
}

.contact-info, .contact-details, .contact-form {
  padding: 20px 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
  
}

h2 {
  font-size: 2rem;
  color: #00b09c;
  margin-bottom: 20px;
}

.container p, li , a{
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
}



ul {
  padding-left: 20px;
  list-style-type: disc;
}

.image-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.image-grid img {
  width: 32%;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  
}

label {
  margin-top: 16px;
  font-weight: 600;
  color: #111827;
}

input, textarea {
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  margin-top: 20px;
  padding: 12px;
  background-color: #00b09c;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #019283;
}



.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid #007bff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

