* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: #1f6feb;
}

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

h1, h2, h3, h4 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

.container {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 1rem;
}

main.container {
  padding-block: 2.5rem;
}

.site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}
.site-header .brand {
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  color: #0b3d91;
}
.site-header .brand img {
  max-height: 44px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: #1a1a1a;
}
.site-nav a:hover {
  color: #1f6feb;
}

.btn {
  display: inline-block;
  background: #1f6feb;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}
.btn:hover {
  background: #0b3d91;
}

.hero {
  text-align: center;
  padding-block: 3.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}
.hero .lead {
  font-size: 1.25rem;
  color: #5c6670;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.2rem;
  color: #5c6670;
}

.page-intro {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.page-intro__img {
  flex: 0 0 40%;
  max-width: 40%;
  height: auto;
  border-radius: 10px;
}

.page-intro__text {
  flex: 1 1 0;
}

.page-intro__text > :first-child {
  margin-top: 0;
}

@media (max-width: 640px) {
  .page-intro {
    flex-direction: column;
  }
  .page-intro__img {
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
  }
}
.contact-details {
  list-style: none;
  padding: 0;
  line-height: 2;
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
  padding-block: 2rem;
  color: #5c6670;
  text-align: center;
}

/*# sourceMappingURL=main.css.map */