.u-global-text-white, :root, html, body, .iframe-container, .contact-info, .contact-info p, .contact-info h2, .social-media, .icon, .u-section-1, .u-section-1 * {
  color: #ffffff !important;
}

/* Use a professional UI font */
html, body { font-family: Inter, Roboto, Arial, sans-serif; font-size:16px; line-height:1.45; -webkit-font-smoothing:antialiased; }

/* Layout for two iframes side by side */
.iframe-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin: 18px auto;
}

.left-iframe, .right-iframe {
  width: 48%;
  min-height: 700px;
  border-radius: 12px;
  border: 1px solid #333;
  background: #111;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.auto-stylebold {
  color: #AC8E05;
  font-size: 20pt;
  text-align: center;
  font-family: "Imprint MT Shadow";
  margin: 20px 0;
	text-decoration: underline;
  }

.right-iframe {
  background: #181818;
}

/* Contact info styles inside right iframe */
.contact-info {
  color: #fff;
  font-family: Inter, Roboto, Arial, sans-serif;
  padding: 20px 16px;
  background: transparent;
}
.contact-info h2 {
  margin-bottom: 8px;
  font-size: 1.5rem;
  color: #fff;
  font-weight:600;
}
.contact-info p {
  margin: 6px 0;
  font-size: 0.98rem;
}
/* Office hours table for compact alignment */
.contact-info table.office-hours{ width:100%; border-collapse:collapse; margin-top:6px; }
.contact-info table.office-hours th{ text-align:left; font-weight:600; padding:6px 0; color:#fff; font-size:0.95rem; }
.contact-info table.office-hours td{ text-align:right; padding:6px 0; color:rgba(255,255,255,0.9); font-size:0.95rem; }
.contact-info table.office-hours tr + tr td{ border-top:1px solid rgba(255,255,255,0.03); }
.social-media {
  margin-top: 24px;
  display: flex;
  gap: 18px;
}
.icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
.icon:hover {
  box-shadow: 0 2px 12px #b7ffb7;
  transform: scale(1.08);
}

/* Make iframes stack on small screens */
@media (max-width: 767px) {
  .iframe-container {
    flex-direction: column;
    gap: 18px;
    padding: 0 12px;
  }
  .left-iframe, .right-iframe {
    width: 100%;
    min-height: 480px;
  }
}

/* Style for inline SVG icons inside right iframe */
.right-iframe .icon, .contact-info .icon {
  width: 38px;
  height: 38px;
  display: inline-block;
}
/* allow inline SVGs to define their own fill colors */

/* Map container styles */
.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 28px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.map-iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 767px) {
  .map-iframe {
    height: 320px;
  }
}

/* Logo section styles */
.logo-section img {
  max-width: 90%;
  height: auto;
  width: 150px;
  display: inline-block;
}
@media (max-width: 767px) {
  .logo-section img { width: 160px; }
}