:root {
  --blue: #087da4;
  --blue-dark: #075e7b;
  --green: #6ca43b;
  --text: #292929;
  --muted: #666666;
  --border: #d4e2e7;
  --background: #f4fafc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blue-dark);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.site-header {
  flex-shrink: 0;
  color: var(--blue-dark);
  background: var(--white);
  border-bottom: 4px solid var(--blue);
}

.header-content {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(1400px, calc(100% - 40px));
  min-height: 100px;
  margin: 0 auto;
}

.site-logo {
  width: 96px;
  height: 76px;
  object-fit: contain;
}

.site-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.banner {
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
  background: #ccebf5;
  border-bottom: 4px solid var(--green);
}

.banner img {
  width: 100%;
  height: auto;
}

.page-content {
  flex: 1 0 auto;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 30px;
}

.maintenance-intro {
  margin-bottom: 22px;
  text-align: center;
}

.maintenance-intro h1 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.maintenance-intro p {
  margin: 8px 0 0;
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 700;
}

.information-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border);
}

.information-section {
  min-width: 0;
  padding: 22px 24px 24px;
  background: var(--white);
}

.information-section + .information-section {
  border-left: 1px solid var(--border);
}

.information-section h2 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 1rem;
  text-transform: uppercase;
}

.social-links {
  display: grid;
  gap: 8px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 12px;
  border: 1px solid var(--border);
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  background: var(--blue);
  text-decoration: none;
}

.network-name {
  color: var(--blue-dark);
  font-weight: 700;
}

.social-links a:hover .network-name,
.social-links a:focus-visible .network-name {
  color: var(--white);
}

address {
  font-style: normal;
}

address p {
  margin: 0 0 12px;
}

address p:last-child {
  margin-bottom: 0;
}

.organization-name {
  font-weight: 700;
}

.office-name {
  color: var(--green);
  font-weight: 700;
}

.contact-section a {
  font-weight: 700;
}

.site-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding: 24px 20px;
  color: var(--white);
  text-align: center;
  background: var(--blue-dark);
  border-top: 4px solid var(--green);
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .header-content,
  .page-content {
    width: min(100% - 24px, 620px);
  }

  .header-content {
    gap: 10px;
    min-height: 80px;
  }

  .site-logo {
    width: 72px;
    height: 60px;
  }

  .site-name {
    font-size: 0.88rem;
  }

  .page-content {
    padding: 20px 0 24px;
  }

  .maintenance-intro {
    margin-bottom: 16px;
  }

  .maintenance-intro h1 {
    font-size: 1.55rem;
  }

  .maintenance-intro p {
    font-size: 0.95rem;
  }

  .information-grid {
    grid-template-columns: 1fr;
  }

  .information-section {
    padding: 18px;
  }

  .information-section + .information-section {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .social-links a {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

@media print {
  .site-header,
  .site-footer {
    color: #000000;
    background: #ffffff;
    border-color: #000000;
  }

  .page-content {
    width: 100%;
  }

  .social-links a {
    color: #000000;
  }
}
