/* Reset some basic elements */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, table, td, th, div {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: 'Exo', 'Glegoo', Arial, Helvetica, sans-serif;
  background: #f7f7f7;
  color: #2a2a2a;
  line-height: 1.6;
}

/* Container */
#container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  padding-bottom: 30px;
}

/* Header */
#header {
  width: 100%;
  background: #353535;
  color: #fff;
  padding: 20px 0;
}

#logo {
  padding-left: 40px;
}
#wsite-title {
  font-size: 2.2em;
  font-weight: bold;
  letter-spacing: 2px;
  color: #fff;
}
#header-right {
  text-align: right;
  padding-right: 40px;
}

/* Menu */
#avmenu {
  background: #4e4e4e;
  border-bottom: 2px solid #d1ad4c;
}
.wsite-menu-default {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}
.wsite-menu-item-wrap {
  margin: 0 8px;
}
.wsite-menu-item {
  display: block;
  padding: 14px 22px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px 4px 0 0;
  transition: background 0.2s;
}
.wsite-menu-item:hover,
.wsite-menu-item-wrap#active .wsite-menu-item {
  background: #d1ad4c;
  color: #353535;
}

/* Banner/Header Image */
#wsite-header {
  height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 8px 8px;
  margin-bottom: 20px;
}

/* Main Content */
#main {
  padding: 40px 30px;
}
#wsite-content {
  margin: 0 auto;
  max-width: 900px;
}

.paragraph {
  margin-bottom: 18px;
  font-size: 1.1em;
}

.wsite-content-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #d1ad4c;
  margin-bottom: 10px;
}

/* Multicolumns */
.wsite-multicol-table {
  width: 100%;
  border-spacing: 0;
}
.wsite-multicol-col {
  vertical-align: top;
}

/* Images */
.wsite-image {
  margin: 0 auto;
  text-align: center;
}
.wsite-image img {
  border-radius: 6px;
  max-width: 100%;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

/* Buttons */
.wsite-button-inner {
  display: inline-block;
  padding: 10px 22px;
  background: #d1ad4c;
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.wsite-button-inner:hover {
  background: #c09a3c;
  color: #fff !important;
}

/* Styled HR */
.styled-hr {
  border: none;
  border-top: 2px solid #d1ad4c;
  margin: 24px 0;
}

/* Footer */
#footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 24px 0;
  font-size: 0.95em;
}
#footer a {
  color: #d1ad4c;
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 900px) {
  #container {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  #main {
    padding: 18px 8px;
  }
  #header, #header-right {
    padding: 12px 0;
  }
  #logo {
    padding-left: 16px;
  }
  #header-right {
    padding-right: 16px;
  }
  .wsite-multicol-table-wrap {
    margin: 0;
  }
  .wsite-multicol-col {
    display: block;
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 18px;
  }
}

/* Misc */
.wsite-spacer {
  height: 30px !important;
}