

```css
@font-face { 
  font-family: News Cycle; 
  src: url('../fonts/NewsCycle-Regular.eot'); 
  src: local("News Cycle"), url('../fonts/NewsCycle-Regular.ttf'); 
} 

html {
  height: 100%;
}

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

body {
  font: normal 95% Arial, Helvetica, sans-serif;
  color: #F2F2F2;
  background: #000000;
  line-height: 1.6;
}

/* tell the browser to render HTML 5 elements as block */
article, aside, figure, footer, header, hgroup, nav, section { 
  display: block;
}

p {
  padding: 0 0 12px 0;
  line-height: 1.7em;
}

img {
  border: 0;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font: normal 250% 'News Cycle', Arial, sans-serif;
  color: #FFF;
  letter-spacing: -0.5px;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

h2 {
  font-size: 165%;
}

h3 {
  font-size: 130%;
  color: #406b95; 
}

h4, h5, h6 {
  margin: 0;
  padding: 0 0 0px 0;
  font-size: 150%;
  line-height: 1.5em;
}

h5, h6 {
  font: normal 95% Arial, Helvetica, sans-serif;
  padding-bottom: 15px;
}
  
span {
  color: #A6A6A6;
}

a, a:hover {
  color: #406b95; 
  background: transparent;
  outline: none;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

a:hover {
  color: #5a8bbd; 
  text-decoration: underline;
}

ul {
  margin: 2px 0 22px 30px;
  line-height: 1.7em;
  font-style: normal;
  font-size: 100%;
}

ol {
  margin: 8px 0 22px 20px;
}

ol li {
  margin: 0 0 11px 0;
}

#main, header, #banner, #menubar, #site_content, footer, #content_grey, nav {
  margin-left: auto; 
  margin-right: auto;
}

#main {
  background: transparent;
  width: 100%;
}
  
header {
  height: auto;
  padding: 20px 0;
}

#banner {
  width: 100%;
  max-width: 940px;
  position: relative;
  height: auto;
  padding: 15px 20px 0 20px;
  background: transparent;
  text-align: center;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 15px; 
}
 
nav {
  height: auto;
  width: 100%;
}  
  
#menubar {
  width: 100%;
  max-width: 940px;
  height: auto;
  text-align: center; 
  margin: 0 auto;
  position: relative;
  padding: 10px 0;
}

#welcome, #welcome_slogan {
  width: 100%;
  float: none;
  height: auto;
  margin: 0 auto;
  padding: 0 20px;
  background: transparent;
  text-align: center;
}

#welcome h1, #welcome H3 {
  font: normal 260% 'News Cycle', Arial, sans-serif;
  letter-spacing: -1px;
  color: #FFF;
  text-align: center;
}

#welcome_slogan h2, #welcome_slogan H3 {
  font: normal 150% 'News Cycle', Arial, sans-serif;
  letter-spacing: -0.5px;
  color: #C9C9C9;
  text-align: center;
}  

ul#nav {
  margin: 0;
  float: none;
  position: static;
  left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

ul#nav li {
  padding: 0;
  list-style: none;
  margin: 4px;
  display: block;
  background: transparent;
  float: none;
  position: static;
  right: auto;
}

ul#nav li a {
  float: none;
  display: block;
  font: bold 105% Arial, Helvetica, sans-serif;
  height: auto;
  margin: 0;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  text-align: center;
  color: #F2F2F2;
  text-decoration: none;
  transition: background 0.15s ease-in-out, color 0.15s ease-in-out;
} 
  
ul#nav li.current a, ul#nav li:hover a {
  color: #0B1620;
  background: linear-gradient(180deg, #9dc0e6 0%, #6f9cc9 16%, #3f6890 55%, #2a4a6b 100%);
  border-color: #1e3852;
  border-top-color: rgba(255,255,255,0.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -3px 5px rgba(0,0,0,0.3),
    0 2px 6px rgba(0,0,0,0.45);
  text-decoration: none;
}

#banner_contact {
  margin-top: 10px;
}

#banner_contact a {
  position: relative;
  display: inline-block;
  font: bold 105% Arial, Helvetica, sans-serif;
  padding: 8px 18px;
  background: linear-gradient(180deg, #9dc0e6 0%, #6f9cc9 16%, #3f6890 55%, #2a4a6b 100%);
  border: 1px solid #1e3852;
  border-top-color: rgba(255,255,255,0.5);
  color: #0B1620;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
  border-radius: 6px;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -3px 5px rgba(0,0,0,0.3),
    0 2px 6px rgba(0,0,0,0.45);
  overflow: hidden;
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#banner_contact a::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 35%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
}

#banner_contact a:hover {
  background: linear-gradient(180deg, #b4d0ee 0%, #82ade0 16%, #4a7aa8 55%, #33587f 100%);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -3px 5px rgba(0,0,0,0.3),
    0 4px 10px rgba(64,107,149,0.5);
  text-decoration: none;
}

#site_content {
  width: 100%;
  max-width: 940px;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 0 20px;
  background: transparent;
  border-radius: 0 0 10px 10px;
} 

#content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 20px auto;
  float: none;
  text-align: left;
}

.content_item {
  width: 100%;
  margin-bottom: 20px;
}
 
.content_imagetext {
  width: 100%;
  padding: 5px;
  margin: 20px 0 0 0;
  float: none;
}
 
.content_image {
  float: none;
  position: relative;
  left: auto;
  margin: 0 auto 40px auto;
  width: 100%;
  max-width: 400px;
  height: auto; 
  padding: 0px;
  box-shadow: none;
  background-color: #000;
}

.content_image img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
}

.content_container {
  width: 100%;
  max-width: 275px;
  padding: 5px;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin: 10px;
}

.service_block {
  margin-bottom: 2.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service_block:last-of-type {
  border-bottom: none;
}

.service_block ul,
.service_block li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service_point {
  margin: 0 0 1.1em 0;
  line-height: 1.55;
  padding: 0 0 0 16px;
  border-left: 2px solid #406b95; 
}

.service_point strong {
  display: block;
  margin-bottom: 0.2em;
  color: #FFF;
}

#site_content hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 2.5em 0;
}

footer {
  width: 100%;
  max-width: 900px;
  height: auto;
  padding: 20px;
  margin: 0 auto 30px auto;
  font-weight: bold;
  text-align: center; 
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

footer a, footer a:hover {
  text-decoration: none;
  color: #406b95;
}

footer a:hover {
  text-decoration: underline;
}
 
.button_small {
  position: relative;
  display: inline-block;
  font: normal 105% Arial, Helvetica, sans-serif;
  width: auto;
  padding: 10px 20px;
  background: linear-gradient(180deg, #9dc0e6 0%, #6f9cc9 16%, #3f6890 55%, #2a4a6b 100%);
  border: 1px solid #1e3852;
  border-top-color: rgba(255,255,255,0.5);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -3px 5px rgba(0,0,0,0.3),
    0 3px 8px rgba(0,0,0,0.5);
  overflow: hidden;
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.button_small::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 35%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
}

.button_small:hover {
  background: linear-gradient(180deg, #b4d0ee 0%, #82ade0 16%, #4a7aa8 55%, #33587f 100%);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -3px 5px rgba(0,0,0,0.3),
    0 4px 12px rgba(64,107,149,0.5);
}
  
.button_small a {
  position: relative;
  z-index: 1;
  color: #0B1620;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
  padding-left: 0;
  font-weight: bold;
}

.form_settings {
  margin: 15px 0 0 0;
}

.form_settings p {
  padding: 0 0 4px 0;
}

.form_settings span {
  float: left; 
  width: 280px; 
  text-align: left;
  color: #F2F2F2;
}
  
.form_settings input, .form_settings textarea {
  padding: 6px; 
  width: 100%; 
  max-width: 299px; 
  font: 100% arial; 
  border: 1px solid #4A4A4A; 
  border-radius: 4px;
  background: #FFF; 
  color: #47433F;
}
  
.form_settings input[type="checkbox"] {
  padding: 2px 0; 
  width: 15px; 
  font: 100% arial; 
  border: 0; 
  background: #FFF; 
  color: #47433F;
  margin: 28px 0;
}

.form_settings .submit {
  font: 100% arial; 
  border: none; 
  width: 99px; 
  margin: 10px 0 0 0; 
  height: 32px;
  padding: 2px 0 3px 0;
  cursor: pointer; 
  background: #406b95; 
  color: #0B0D10;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.15s ease-in-out;
}

.form_settings .submit:hover {
  background: #5a8bbd; 
}

.contact_form_section {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #F2F2F2;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font: 100% Arial, Helvetica, sans-serif;
  color: #F2F2F2;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #111;
  color: #F2F2F2;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #406b95; 
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8A8A8A;
}

.button_small button {
  all: unset;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
  color: #0B1620;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
  font: bold 105% Arial, Helvetica, sans-serif;
}

.seal_widget {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 446 / 393;
  margin: 0 auto;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  display: block;
}

.seal_widget:focus-visible {
  outline: 2px solid #406b95; 
  outline-offset: 4px;
}

.seal_layer {
  position: absolute;
  pointer-events: none;
  display: block;
}

.seal_layer.seal_bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.seal_layer.seal_eagle {
  top: 22%;
  left: 27%;
  width: 46%;
  height: 43.41%;
  transform-origin: 50% 85%;
}

.seal_layer.seal_flame {
  top: 58.3%;
  left: 30%;
  width: 39.9%;
  height: 31.3%;
  transform-origin: 50% 80%;
}

.seal_widget:hover .seal_layer.seal_eagle,
.seal_widget:hover .seal_layer.seal_flame {
  filter: brightness(1.08);
  transition: filter 0.2s ease-in-out;
}

@keyframes seal-eagle-flap {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  25%      { transform: translateY(-3%) scale(1.035) rotate(-1.2deg); }
  50%      { transform: translateY(0.5%) scale(0.985) rotate(1deg); }
  75%      { transform: translateY(-1.5%) scale(1.015) rotate(-0.5deg); }
}

@keyframes seal-flame-flicker {
  0%, 100% { transform: scale(1) translateY(0); opacity: 1; filter: brightness(1); }
  20%      { transform: scale(1.08) translateY(-3%); opacity: 0.92; filter: brightness(1.3); }
  40%      { transform: scale(0.94) translateY(1%); opacity: 1; filter: brightness(1.05); }
  60%      { transform: scale(1.1) translateY(-4%); opacity: 0.9; filter: brightness(1.35); }
  80%      { transform: scale(1.02) translateY(-1%); opacity: 1; filter: brightness(1.1); }
}

.seal_widget.seal_active .seal_eagle {
  animation: seal-eagle-flap 1.6s ease-in-out 2;
}

.seal_widget.seal_active .seal_flame {
  animation: seal-flame-flicker 0.9s ease-in-out 4;
}

.modern-slider { 
  width: 100%;
  max-width: 900px;
  height: 250px;
  margin: 20px auto 0 auto;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 12px;
  position: relative;
  overflow: hidden;
}  
  
.modern-slider ul {
  list-style: none;
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}
  
.modern-slider ul li {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}
 
.modern-slider ul li.active {
  opacity: 1;
  z-index: 500;
}
 
.modern-slider ul img {
  border: none;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 700px) {
  #banner, #menubar, #site_content, footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  #welcome h1, #welcome H3 {
    font-size: 180%;
  }

  #welcome_slogan h2, #welcome_slogan H3 {
    font-size: 120%;
  }

  ul#nav {
    gap: 6px;
  }

  ul#nav li a {
    padding: 8px 12px;
    font-size: 95%;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: 150%;
  }

  h2 {
    font-size: 135%;
  }

  h3 {
    font-size: 115%;
  }

  .content_container {
    max-width: 100%;
    margin: 10px 0;
  }

  #banner_contact {
    position: static;
    margin-top: 12px;
    text-align: center;
  }
}

```