@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;800&display=swap');

.contact-section {
  padding: 80px 10%;
  background-color: #f9fafb;
  font-family: 'Manrope', sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
}

.contact-details {
  flex: 1 1 350px;
  max-width: 500px;
}

.contact-details h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item h4 {
  font-size: 1.1rem;
  color: #0077b6;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item p,
.contact-item a {
  color: #333;
  font-size: 1rem;
  text-decoration: none;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  background-color: #0077b6;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #005e94;
}

.contact-map {
  flex: 1 1 400px;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column-reverse;
  }

  .contact-map {
    min-height: 300px;
    width: 100%;
  }

  .contact-details h2 {
    font-size: 2rem;
  }
}
