/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* TOP BAR */
.top-bar {
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-box img {
  max-height: 62px;
}
.top-phone a {
  color: #009999;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}
.top-phone a:hover {
  color: #007777;
}

/* MENU */
.menu {
  background: #f7f7f7;
  border-bottom: 1px solid #ddd;
}
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 14px 0;
}
.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}
.nav-menu a:hover {
  color: #009999;
}

/* MAIN */
.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* ARTICLE */
.article {
  font-size: 16px;
}
.article-header {
  margin-bottom: 24px;
}
.article h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1d1d1d;
}
.article-lead {
  font-size: 18px;
  color: #444;
}
.article-section {
  margin-top: 28px;
}
.article h2 {
  font-size: 26px;
  margin: 30px 0 16px;
  font-weight: 800;
  color: #009999;
}
.article h3 {
  font-size: 17px;
  margin: 14px 0 8px;
  font-weight: 700;
  color: #333;
}
.article p {
  margin-bottom: 10px;
}
.article ul {
  margin: 8px 0 12px 20px;
}

/* IMAGE INSIDE LEAD PARAGRAPH */
.with-image {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 18px;
  color: #444;
}
.lead-image {
  width: 280px;
  border-radius: 6px;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

/* ADDRESS CARD – TWO COLUMNS */
.address-card.two-columns {
  margin-top: 35px;
  padding: 26px;
  background: #ffffff;
  border: 2px solid #009999;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  animation: fadeIn 0.6s ease-out;
}
.address-card.two-columns h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #009999;
  margin-bottom: 22px;
}
.address-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.address-map {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #009999;
}
.address-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.address-text {
  padding: 10px;
}
.address-info {
  font-size: 17px;
  line-height: 1.55;
  color: #333;
  margin-bottom: 16px;
}
.address-desc {
  font-size: 15px;
  color: #444;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* IMAGE ABOVE COLUMNS */
.code-image {
  margin: 20px auto 25px;
  text-align: center;
}
.code-image img {
  max-width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.code-image figcaption {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

/* CTA */
.cta-box {
  margin-top: 30px;
  padding: 20px;
  background: #e0f7f7;
  border-left: 4px solid #009999;
}
.cta-box h2 {
  margin-bottom: 8px;
}
.cta-phone a {
  color: #009999;
  text-decoration: none;
}
.cta-phone a:hover {
  text-decoration: underline;
}

/* FOOTER */
.global-footer {
  background: #f2f2f2;
  padding: 40px 20px;
  margin-top: 60px;
  border-top: 2px solid #ddd;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-col p {
  font-size: 14px;
  color: #555;
}
.footer-col a {
  color: #009999;
  text-decoration: none;
}
.footer-col a:hover {
  text-decoration: underline;
}

/* BREADCRUMBS */
.breadcrumbs {
  max-width: 1100px;
  margin: 20px auto 10px;
  padding: 0 20px;
  font-size: 14px;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #666;
}
.breadcrumbs ol li {
  display: flex;
  align-items: center;
}
.breadcrumbs ol li a {
  color: #009999;
  font-weight: 600;
  text-decoration: none;
}
.breadcrumbs ol li a:hover {
  text-decoration: underline;
}
.breadcrumbs ol li::after {
  content: ">";
  margin: 0 6px;
  color: #999;
}
.breadcrumbs ol li:last-child::after {
  content: "";
}
.breadcrumbs ol li:last-child {
  color: #333;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .address-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    gap: 10px;
  }
  .nav-menu {
    gap: 20px;
    flex-wrap: wrap;
  }
  .article h1 {
    font-size: 26px;
  }
}
@media (max-width: 600px) {
  .with-image {
    flex-direction: column;
    gap: 12px;
  }
  .lead-image {
    width: 160px;
    margin: 0 auto;
  }
  .address-map {
    height: 260px;
  }
}
@media (max-width: 480px) {
  .nav-menu {
    flex-direction: column;
    gap: 12px;
  }
  .logo-box img {
    max-height: 50px;
  }
  .container {
    margin: 20px auto;
  }
  .article-lead {
    font-size: 16px;
  }
}
