* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #1f3a5f;
  --secondary-color: #f4f4f4;
  --accent-color: #caa86a;
  --text-color: #222222;
  --muted-text: #666666;
  --border-color: #dddddd;
  --white: #ffffff;
  --max-width: 1200px;
  --header-height: 80px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-color);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-wrapper {
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-area {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-color);
  text-decoration: none;
}

.site-logo-link:hover {
  text-decoration: none;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.site-logo-text {
  font-size: 2.6rem;
  font-weight: bold;
  color: #222222;
  white-space: nowrap;
}

.site-logo-tagline {
  font-size: 0.72rem;
  color: #888888;
  letter-spacing: 0.4px;
  margin-top: 2px;
  white-space: nowrap;
}

.main-nav {
  flex: 0 0 auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}

.main-nav a {
  color: var(--text-color);
  font-size: 0.98rem;
}

.hero-section,
.page-hero-section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.hero-image-wrapper,
.page-hero-image-wrapper {
  overflow: hidden;
}

.hero-image,
.page-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.intro-section,
.content-section,
.cards-section,
.cta-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.intro-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

.intro-image {
  width: 420px;
  height: 280px;
  object-fit: cover;
}

.section-heading {
  font-size: 1.9rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-text-column p,
.narrow-content p,
.card-text,
.cta-inner p,
.simple-services-list li {
  margin-bottom: 16px;
  color: var(--muted-text);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: var(--white);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding-top: 18px;
}

.card-kicker {
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-text);
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.card-link {
  font-weight: bold;
}

.narrow-content {
  max-width: 850px;
}

.simple-services-list {
  margin-top: 30px;
}

.simple-services-list h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.simple-services-list ul {
  padding-left: 22px;
}

.cta-inner {
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding-top: 40px;
  padding-bottom: 40px;
}

.button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 24px;
  font-weight: bold;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

.button:hover {
  text-decoration: none;
  opacity: 0.92;
}

.resource-links-list {
  list-style: none;
  padding-left: 0;
}

.resource-links-list li {
  margin-bottom: 12px;
}

.contact-form-box {
  border: 1px solid var(--border-color);
  padding: 28px;
  background: var(--white);
}

.contact-form-box-simple {
  margin-top: 28px;
}

.contact-form-box h2 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.contact-form {
  margin-top: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 12px;
  margin-bottom: 18px;
  font: inherit;
}

.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  padding-bottom: 24px;
  margin-top: 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-inner-stacked {
  align-items: flex-start;
}

.footer-inner p {
  color: var(--muted-text);
  margin-bottom: 6px;
}

@media (max-width: 1024px) {
  .cards-grid,
  .intro-inner {
    grid-template-columns: 1fr;
  }

  .intro-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .main-nav {
    width: 100%;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero-image,
  .page-hero-image {
    height: 260px;
  }

  .site-logo-text {
    font-size: 1.2rem;
    white-space: normal;
  }

  .site-logo-tagline {
    font-size: 0.68rem;
    white-space: normal;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
