:root {
  --blue: /*#102f4e*/#042994;
  --blue-light: /*#042994*/#006dff;
  --cream: #f7f4ef;
  --text: #222;
  --muted: #666;
  --white: #fff;
  --border: #e5e1da;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  color: var(--blue);
  line-height: 1.1;
}

.logo img{
    max-height:100px;
    width:auto;
}

.logo span {
  display: block;
  font-size: 14px;
}

.logo strong {
  font-size: 26px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--blue);
}

.menu-toggle {
  display: none;
  font-size: 28px;
  border: 0;
  background: none;
  color: var(--blue);
}

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    /*linear-gradient(rgb(1 78 154 / 82%), rgba(16, 47, 78, 0.82)), url(https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80)*/linear-gradient(rgb(14 134 255 / 47%), rgb(4 41 148)), url(https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-light);
}

.hero .eyebrow {
  color: #d9ecff;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(40px, 6vw, 68px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--blue);
}

.hero p {
  font-size: 20px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn.primary {
  background: var(--blue-light);
  color: var(--white);
}

.btn.secondary {
  background: var(--white);
  color: var(--blue);
}

.section {
  padding: 90px 0;
}

.section.light {
  background: #ccffcc80;
}

.grid-2 {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.card h3 {
  color: var(--blue);
  font-size: 26px;
}

.card ul {
  padding-left: 20px;
}

.caf {
  background: var(--blue);
  color: var(--white);
}

.caf h2,
.caf .section-label {
  color: var(--white);
}

.contact-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
}

.hours {
  background: #ccffcc80;
  border-radius: 24px;
  padding: 34px;
}

.hours h3 {
  color: var(--blue);
}

.site-footer {
  background: var(--blue);
  color: var(--white);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
  }

  .nav.active {
    display: flex;
  }

  .grid-2,
  .cards,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 520px;
  }
}