@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(/resources/font/Roboto-Ext-Italic-700.woff2) format('woff2');
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(/resources/font/Roboto-Italic-700.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/resources/font/Roboto-Ext-Normal-400.woff2) format('woff2');
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/resources/font/Roboto-Normal-400.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(/resources/font/Roboto-Ext-Normal-700.woff2) format('woff2');
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(/resources/font/Roboto-Normal-700.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    font-family: Roboto;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
  padding: 0 auto;
}
.container {
    margin: 4rem auto 2rem auto;
    background-color: #EFE9E4;
    padding: 0.5rem 0 5rem 0;
    width: 1225px;
}
.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.column {
    flex: 1;
    min-width: 300px; /* Allows it to shrink for smaller screens */
    max-width: 50%; /* Prevents stretching too much on wider screens */
  }
.logo {
    margin-bottom: 1rem;
}
.content {
    margin: 2rem 5rem 2rem 4rem;
}
h1, h2 {
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    color: #051F59;
}
h1 {
    font-size: 1.2rem;
}
h2 {
    font-size: 1rem;
} 
p {
    margin-top: 1.5rem;
    color: #004AAD;
    font-size: 1.2rem;
    line-height: 1.7rem;
}
.contact {
  color: black;
  margin-left: 2rem;
}
.contact a {
  color: black;
}

@media (max-width: 1250px) {
    .container {
      width: 1025px;
    }
    .main-image img {
      max-width: 526px;
      width: 526px;
    }
}

@media (max-width: 1050px) {
    .container {
      width: 825px;
    }
    .main-image img {
      max-width: 426px;
      width: 426px;
    }
}
/*
@media (max-width: 950px) and (min-width: 769px) {
  .columns {
    flex-direction: column;
  }

  .column {
    max-width: 100%;
  }

  .main-image img {
    margin-bottom: 2rem;
    width: 100%;
  }
}
*/
@media (max-width: 951px) or (orientation: portrait) {
    .columns {
      flex-direction: column;
    }
    .column {
      width: 100%;
        max-width: 100%; /* Stacks on top of each other on small screens */
    }
    .container {
      margin: 0;
      width: 100%;
      padding: 0 0 5rem 0;
    }
    .content {
      margin: 1rem;
    }
    body {
      padding: 0;
    }
    .main-image img {
      max-width: 100%;
      width: 100%;
    }
}

.main-image {
    width: 100%;
    height: auto;
    max-width: 626px; /* Adjust as needed */
}

.logo {
  width: 233px;
}