:root {
  --accent:#0e819b;
  --red:#c4161c;
  --muted:#444;
  --border:#ddd;
}

/* ============== BASE ============== */
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #fff;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Lora', serif;
  line-height: 1.6;
}

/* ============== CONTACT HERO ============== */
.contact-hero {
  text-align: center;
  margin-bottom: 50px;
}
.contact-hero h2 {
  font-size: 36px;
  font-weight: 700;
  color: #114d5f;
  margin: 0;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  padding-bottom: 8px;
}
.contact-hero p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============== GRID LAYOUT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 60px;
}

/* Map */
.map iframe {
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
  min-height: 300px;
  width: 100%;
}

/* ============== INFO LIST ============== */
.info ul,
.quick-links ul {
  list-style: square;
  padding-left: 20px;
  margin: 0;
}

.info ul li,
.quick-links ul li {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #333;
  font-size: 15px;
}

/* Links */
.info a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.info a:hover {
  text-decoration: underline;
}

/* ============== QUICK LINKS ============== */
.quick-links h3 {
  color: var(--red);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.quick-links ul li a {
  text-decoration: none;
  color: #0e2cb8;
  font-weight: 500;
}
.quick-links ul li a:hover {
  text-decoration: underline;
}

/* ============== RESPONSIVE ============== */
@media(max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns on tablets */
    gap: 40px;
  }
}
@media(max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 30px;
  }
}
