* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.banner {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

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

.banner-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
  background: rgba(0, 0, 0, 0.15);
}

.site-nav {
  background: #a9b4be;
  padding: 0.75rem 1.5rem;
}

.nav-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: underline;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem;
  flex: 1;
}

.main-gif {
  display: block;
  margin: 0 auto 1rem;
  max-width: 100%;
  height: auto;
}

.section-header {
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  background: #a9b4be;
  color: #ffffff;
  text-align: left;
  font-size: 1.5rem;
}

.forms-list {
  margin: 0;
  padding-left: 1.5rem;
}

.forms-list li {
  margin: 0.5rem 0;
}

.site-footer {
  background: #283b51;
  color: #ffffff;
  padding: 1rem 1.5rem;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-title {
  margin: 0;
  padding-bottom: 1rem;
  color: #ffffff;
  text-align: left;
  font-size: 1.5rem;
}

.footer-left {
  text-align: left;
}

.footer-text {
  margin: 0.25rem 0 0;
  color: #ffffff;
}

.footer-text a {
  color: inherit;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
}

.facebook-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  display: block;
}
