/* Site-wide styles */

:root {
  --blue-text: #125387;
  --green-text: #2b6f02;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-gray: #333333;
  --border-gray: #e0e0e0;
}

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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-gray);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

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

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

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

/* Blue text utility */
.blue-text {
  color: var(--blue-text);
}

/* Green text utility */
.green-text {
  color: var(--green-text);
}

/* Global Typography */
h1 {
  font-size: 2rem;
  color: var(--green-text);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  word-break: break-word;
  margin: 0 0 17.5px;
}

h2 {
  font-size: 1rem;
  color: var(--blue-text);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  margin: 30px 0 20px;
}

h3 {
  font-size: 1.5em;
  color: #073763;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  margin-bottom: 30px;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25em;
  }
}
