/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
#topnav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

#topnav ul li {
  padding: 10px;
  font-size: 16px;
}

#topnav ul li a {
  text-decoration: none;
  color: #000; /* or your preferred color */
}
#banner {
  width: 100%;
  overflow: hidden;
}

.responsive-banner {
  width: 100%;
  height: auto;
  display: block;
}

.responsive-image {
  width: 100%;
  max-width: 100%; /* changed from 400px */
  height: auto;
  display: block;
  margin: 0 auto;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000; /* Optional for a clean look */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
body {
  background-color: #000;
  line-height: 1;
  font-family: "Arial, Helvetica, sans-serif";
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Layout Containers */
#outer, #wrapper {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  background-color: #000;
  padding: 0 10px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #f90;
}
h1 {
  font-size: 25pt;
}
h2 {
  font-size: 20pt;
}
h3 {
  font-size: 14px;
  margin-bottom: 5px;
}
h4, h5, h6 {
  font-size: 14px;
}

/* Text Elements */
p {
  color: #f90;
  font-size: 14pt;
  line-height: 1.5;
}
a:link {
  color: #00f;
}
a:visited {
  color: #0f0;
}
a:active {
  color: #000;
}
a:focus {
  color: #666;
}
a:hover {
  color: #f00;
}
blockquote {
  color: #000;
  font-size: 12px;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}

/* Lists */
ol {
  list-style-type: decimal;
}
ul li,
ol li {
  color: #000;
  font-size: 12px;
}

/* Tables */
table {
  width: 100%;
}
.odd {
  background-color: #eee;
}
.even {
  background-color: #fff;
}
th {
  font-weight: bold;
}
thead, th {
  background: #ccc;
}
tfoot {
  background-color: #000;
}
caption {
  background: #efefef;
}

/* Footer */
.footer,
#footer {
  clear: both;
  text-align: center;
  font-style: italic;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #FF0;
}

/* Navigation */
#topnav {
  clear: both;
}
#topnav ul {
  border-top: 1px solid #FC0;
  border-bottom: 1px solid #FC0;
  margin: 20px 0;
  padding: 10px 0;
}
#topnav ul li {
  display: inline;
}
#topnav ul li a {
  padding: 0 10px;
}
#topnav a:link,
#topnav a:visited {
  color: #FFF;
}
#topnav a:active {
  color: #30C;
}
#topnav a:focus {
  color: #666;
}
#topnav a:hover {
  color: #3F0;
}

/* Logo and Social */
#company-logo {
  margin: 30px 0;
  float: left;
}
#social-media-icons {
  float: right;
}
#social-media-icons ul li {
  display: inline;
}
#social-media-icons ul {
  margin-top: 40px;
}

/* Content Layout */
#banner {
  margin: 0 auto 30px auto;
}
#rightside {
  width: 200px;
  float: right;
}
#content {
  width: 650px;
  float: left;
}

/* Forms */
form {
  text-align: left;
  margin: 20px auto;
  max-width: 500px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #FFF;
}
input, textarea, select, button {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #F90;
  background-color: #000;
  color: #FFF;
  box-sizing: border-box;
}
input:focus, textarea:focus {
  background-color: #FFD5AA;
  color: #000;
}
button {
  background-color: #F90;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
button:hover {
  background-color: #FFA500;
}

/* Utility */
.clear {
  clear: both;
}
.date {
  font-weight: bold;
  color: #FFF;
  font-size: 14px;
  margin-bottom: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
  #content, #rightside {
    width: 100%;
    float: none;
  }

  body, h1, h2, p, input, button {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 0 10px;
  }

  #company-logo img {
    width: 100%;
    height: auto;
  }

  #topnav ul {
    flex-direction: column;
    align-items: center;
  }

  .video-container {
    margin: 10px 0;
  }

  form input, form button {
    width: 100%;
    box-sizing: border-box;
    margin: 5px 0;
  }

  .responsive-image {
    max-width: 100%;
  }
}