@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Roboto:wght@300;400;500;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #EFF0F2;
  color: #101D38;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fjalla One', sans-serif;
  color: #101D38;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 32px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

header.nav > nav,
nav.nav > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo img,
.nav__logo img {
  height: 50px;
}

.hamburger,
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span,
.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #101D38;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-links,
.nav__links {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  flex-direction: column;
  gap: 16px;
}

.nav-links.open,
.nav__links.active {
  display: flex;
}

.nav-links li {
  list-style: none;
}

.nav-links a,
.nav__links a {
  font-family: 'Fjalla One', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #101D38;
  transition: opacity 0.2s;
}

.nav-links a:hover,
.nav__links a:hover {
  opacity: 0.7;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 29, 56, 0.55);
}

.hero-overlay {
  display: none;
}

.hero-content,
.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  max-width: 800px;
}

.hero-content h1,
.hero__content h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.hero-content p,
.hero__content p {
  color: #FFFFFF;
  font-size: 20px;
}

.section {
  padding: 60px 0;
}

.section-alt,
.section--white {
  background: #FFFFFF;
}

.section--gray {
  background: #EFF0F2;
}

.section__header {
  text-align: center;
  margin-bottom: 40px;
}

.section__header h2 {
  margin-bottom: 12px;
}

.section__header p {
  max-width: 700px;
  margin: 0 auto;
}

.section .container > h2,
.section .container > h1 {
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.section-cta {
  text-align: center;
  padding: 60px 0;
}

.section-cta p {
  margin-bottom: 24px;
  font-size: 20px;
}

.card-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 28px;
  transition: box-shadow 0.3s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card h3 {
  margin-bottom: 12px;
}

.card p,
.card__body p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.card__body {
  padding: 28px;
}

.card__body h3 {
  margin-bottom: 12px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-item {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.2s;
}

.grid-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.grid-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.grid-item span {
  display: block;
  font-family: 'Fjalla One', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 12px;
  color: #101D38;
}

.btn {
  display: inline-block;
  font-family: 'Fjalla One', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #101D38;
  color: #FFFFFF;
  transition: opacity 0.2s;
}

.btn:hover,
.btn--primary:hover {
  opacity: 0.85;
}

.btn--primary {
  background: #101D38;
  color: #FFFFFF;
}

.form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group,
.form__group {
  margin-bottom: 20px;
}

.form-group label,
.form__group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 16px;
}

.form-group input,
.form-group textarea,
.form-group select,
.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  border: 1px solid #D0D3D9;
  border-radius: 4px;
  background: #FFFFFF;
  color: #101D38;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none;
  border-color: #101D38;
}

.form-group textarea,
.form__group textarea {
  min-height: 140px;
  resize: vertical;
}

.form .btn {
  width: 100%;
}

.footer {
  background: #101D38;
  color: #FFFFFF;
  padding: 60px 0 30px;
}

.footer a {
  color: #FFFFFF;
  transition: opacity 0.2s;
}

.footer a:hover {
  opacity: 0.7;
}

.footer h4 {
  color: #FFFFFF;
  margin-bottom: 8px;
  margin-top: 20px;
}

.footer h4:first-child {
  margin-top: 0;
}

.footer-columns,
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col p,
.footer__col p {
  font-size: 16px;
  line-height: 1.7;
}

.footer__col h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.social-links,
.footer__social {
  display: flex;
  gap: 12px;
}

.social-links a,
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: background 0.2s, border-color 0.2s;
}

.social-links a:hover,
.footer__social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

.social-links svg,
.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom,
.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-bottom a {
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  opacity: 0.7;
}

.footer-bottom a:hover {
  opacity: 1;
}

.footer-bottom span {
  opacity: 0.3;
}

.page-content {
  margin-top: 70px;
  padding: 60px 0;
}

.page-content h1 {
  text-align: center;
  margin-bottom: 24px;
}

.page-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.page-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content p {
  margin-bottom: 16px;
  max-width: 800px;
}

.page-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
  max-width: 800px;
}

.page-content ul li {
  list-style: disc;
  margin-bottom: 6px;
}

.page-content .btn {
  margin-top: 24px;
}

.page-content.centered {
  text-align: center;
}

.page-content.centered p,
.page-content.centered ul {
  margin-left: auto;
  margin-right: auto;
}

.territory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 24px 0;
}

.territory-card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 28px;
}

.territory-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.territory-card p {
  margin-bottom: 0;
  color: #555;
}

@media (min-width: 480px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .territory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  h2 { font-size: 48px; }

  .hero { min-height: 500px; }

  .section { padding: 80px 0; }

  .card-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-columns,
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-content {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  h2 { font-size: 60px; }

  .hamburger,
  .nav__toggle { display: none; }

  .nav-links,
  .nav__links {
    display: flex;
    position: static;
    width: auto;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    gap: 28px;
    background: transparent;
  }

  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero {
    min-height: 600px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .territory-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
