* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* =========================
   BANNER
========================= */
.banner {
  position: relative;
  height: 30vh;
  background: url("../../images/banner2.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.banner h2 {
  font-size: 40px;
}

/* ===============================
   Contact Section
   =============================== */

.contact-section {
  padding: 60px 0;
  background-color: #f8f9fb;
}

.contact-section .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Contact Info */
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0b4f8a;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.contact-info .email a {
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
}

.contact-info .email a:hover {
  text-decoration: underline;
}

.contact-info small {
  color: #777;
}

/* Map */
.contact-map iframe {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .contact-map iframe {
    height: 260px;
  }
}
