/* Contact Section */
.contact-section {
  font-family: "Poppins", sans-serif;
  background-color: #334155;
  color: #162d42;
  padding: 20px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

/* Each contact info block (Map + Details) */
.contact-info {
  flex: 1 1 480px;
  background: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #162d42;
  margin-bottom: 15px;
  position: relative;
}


.contact-info p {
  color: black;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Map */
.contact-info iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  margin-top: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Office blocks */
.info-block {
  margin-bottom: 18px;
}

.info-block h3 {
  font-size: 1.05rem;
  color: #162d42;
  margin-bottom: 6px;
}

.info-block p {
  font-size: 0.95rem;
  color: black;
  line-height: 1.5;
}

/* Email Link */
.email-block a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.email-block a:hover {
  text-decoration: underline;
}




