/* Base styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #ffffff;
}

h1, h2 {
  margin-top: 0;
  color: #0A2540;
}

section {
  padding: 3rem 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('hero.jpg') center/cover no-repeat;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 37, 64, 0.55);
  backdrop-filter: brightness(0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.hero .subhead {
  font-size: 1rem;
  font-weight: 300;
}

/* About & Focus */
.about p,
.focus ul,
.compliance p,
.contact p,
.contact address {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.focus ul {
  list-style: disc inside;
  padding-left: 0;
}

.focus li {
  margin-bottom: 0.75rem;
}

.focus strong {
  color: #0A2540;
}

/* Contact section */
.contact .email {
  font-weight: bold;
  color: #0A2540;
}

address {
  font-style: normal;
  line-height: 1.4;
}

/* Footer */
.footer {
  background-color: #0A2540;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
}

.footer a {
  color: #BFA181;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero .subhead {
    font-size: 0.875rem;
  }
}