/* 1. Reset and base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  color: #222;
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(/images/bg2.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Desktop vertical centering */
@media (min-width: 900px) {
  body {
    align-items: center;
  }
}

/* 2. Typography */
h1, h2, h3, h4, h5, h6,
.section-title,
.card-title-text,
.label {
  font-family: 'Lato', Arial, sans-serif;
}

.section-title {
	text-align: left;
}

h1, h2, h3, h4, h5, h6,
.card-title-text {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p, a, td, footer, .note {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* 3. Global elements */
hr {
  border: none;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
  margin: 24px 0;
  width: 100%;
  border-radius: 1px;
}

/* 4. Layout containers */
.page-wrapper {
  width: 100%;
  max-width: 1100px;
  padding: 24px;
}

.card {
  background: #ffffff;
  color: #41434C;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.card-body {
  padding: 0 24px 24px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

/* 5. Card header / title bar */
.card-title-bar {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  gap: 12px;
  padding: 24px;
  width: 100%;
  background-color: #266087;
  text-align: center;
  border-radius: 12px 12px 0 0;
}

.card-title-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.card-title-text h1 {
  margin: 0 0 8px 0;
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: left;
  font-family: 'Lato', Arial, sans-serif;
}

.card-header p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 800px;
  margin-inline: auto;
  text-align: left;
}

/* 6. Buttons and CTAs */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-primary {
  background: transparent;
  color: #042222;
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background: #266087;
  color: #ffffff;
  border: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

/* 7. Info and contact */
.info-block {
  font-size: 0.95rem;
  line-height: 1.7;
}

.info-block p {
  margin: 0 0 6px 0;
}

.info-block a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-group {
  margin-bottom: 16px;
}

.contact-group a:link,
.contact-group a:visited {
  color: #266087;
}

.contact-group a:hover {
  color: #1a4662;
}

/* 8. Hours section */
.hours-group {
  margin-top: 12px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 2px 0;
  vertical-align: top;
}

.hours-table td:first-child {
  font-weight: 600;
  width: 110px;
}

.hours-table td:last-child {
  text-align: left;
}

/* 9. Footnotes and footer */
.footnote p {
  font-size: 0.85rem;
  color: #222;
  padding: 8px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.05);
  line-height: 1.3;
  display: inline-flex;
}

.card-footer {
  padding: 24px;
  margin-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* 10. Utility spacing */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 2.5rem; }

/* 11. Responsive tweaks */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
	text-align: center;
}
}

@media (max-width: 480px) {
  .cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .card-footer, .card-title-bar {
  	padding: 16px;
  }

  .card-body {
  	padding: 0 16px 16px;
  }
}
