body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #f4f4f9;
    color: #333;
}
h1 {
    width: 100%;
    text-align: center;
    margin: 20px 0;
    color: #960000;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}
.contact-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact-box {
    flex: 1 1 45%;
    box-sizing: border-box;
    padding: 20px;
    margin: 10px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
h2 {
    color: #960000;
    margin-bottom: 10px;
}
h3 {
    color: #960000;
    margin-bottom: 5px;
}
p {
    margin: 5px 0;
}
a {
    color: #960000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
iframe {
    width: 100%;
    border: none;
    margin-top: 10px;
}
header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Variables */
/* Base color theme */
/* Secondary color (highlights, triangles...) */
/* Base gutter */

/* Latest CSS box model */
*,
*:after,
*:before {
  box-sizing: border-box;
}

/* The classic hamburger icon */
.animenu__btn {
  display: none;
  cursor: pointer;
  background-color: #111;
  border: 0;
  padding: 10px;
  height: 40px;
  width: 40px;
}
.animenu__btn:hover {
  background-color: #0186ba;
}
.animenu__btn__bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: 0.15s cubic-bezier(0.75, -0.55, 0.25, 1.55);
}
.animenu__btn__bar + .animenu__btn__bar {
  margin-top: 4px;
}
.animenu__btn--active .animenu__btn__bar {
  margin: 0;
  position: absolute;
}
.animenu__btn--active .animenu__btn__bar:nth-child(1) {
  transform: rotate(45deg);
}
.animenu__btn--active .animenu__btn__bar:nth-child(2) {
  opacity: 0;
}
.animenu__btn--active .animenu__btn__bar:nth-child(3) {
  transform: rotate(-45deg);
}

/* Clear some defaults */
.animenu {
  display: block;
}
.animenu ul {
  padding: 0;
  list-style: none;
  font: 0 -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.animenu li,
.animenu a {
  display: inline-block;
  font-size: 15px;
}
.animenu a {
  color: black;
  text-decoration: none;
}

/* First level -> main menu items */
.animenu__nav {
  
}
.animenu__nav > li {
  position: relative;
  /* border-right: 1px solid #333; */
}
.animenu__nav > li > a {
  padding: 10px;
  text-transform: uppercase;
}
.animenu__nav > li:hover > ul,
.animenu__nav > li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  margin: 0;
}
.animenu__nav > li:hover > a,
.animenu__nav > li:focus-within > a {
  color: #960000;
  font-weight: bold;
}
.animenu__nav__hasDropdown:before {
  content: "";
  position: absolute;
  border: 4px solid transparent;
  border-bottom: 0;
  border-top-color: currentColor;
  top: 50%;
  margin-top: -2px;
  right: 10px;
}

/* Second level */
.animenu__nav__dropdown {
  min-width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  margin: 20px 0 0 0;
  background-color: #1d1d1d;
  transition: margin 0.15s, opacity 0.15s;
}
.animenu__nav__dropdown > li {
  width: 100%;
  border-bottom: 1px solid #333;
}
.animenu__nav__dropdown > li:first-child > a:after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  left: 1em;
  top: -6px;
  border: 6px solid transparent;
  border-top: 0;
  border-bottom-color: inherit;
}
.animenu__nav__dropdown > li:last-child {
  border: 0;
}
.animenu__nav__dropdown a {
  padding: 10px;
  width: 100%;
  border-color: #1d1d1d;
}
.animenu__nav__dropdown a:hover,
.animenu__nav__dropdown a:focus-within {
  background-color: #0186ba;
  border-color: #0186ba;
  color: #fff;
}

/* Media Query for mobile */
@media screen and (max-width: 767px) {
  .animenu__btn {
    display: inline-block;
  }
  .animenu__nav,
  .animenu__nav__dropdown {
    display: none;
  }
  .animenu__nav {
    margin: 10px 0;
  }
  .animenu__nav > li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #333;
  }
  .animenu__nav > li:last-child {
    border: 0;
  }
  .animenu__nav > li:first-child > a:after {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    left: 1em;
    top: -6px;
    border: 6px solid transparent;
    border-top: 0;
    border-bottom-color: inherit;
  }
  .animenu__nav > li > a {
    width: 100%;
    padding: 10px;
    position: relative;
  }
  .animenu__nav > li:hover > a,
  .animenu__nav > li:focus-within > a {
    background-color: #0186ba;
    border-color: #0186ba;
    color: #fff;
  }
  .animenu__nav__dropdown {
    position: static;
    background-color: #1d1d1d;
    margin: 0;
    transition: none;
    visibility: visible;
    opacity: 1;
  }
  .animenu__nav__dropdown > li:first-child > a:after {
    content: none;
  }
  .animenu__nav__dropdown a {
    padding-left: 20px;
    width: 100%;
  }
}
div > section > ul > li {
    font-size: 13px;
}
div > section > ol > li {
  font-size: 13px;
}
/* Expanding the animenu */
.animenu__nav--active {
  display: block !important;
}
.animenu__nav--active .animenu__nav__dropdown {
  display: block;
}

header {
  padding: 10px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

nav {
  display: flex;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: black;
  padding: 5px 10px;
  transition: background-color 0.3s;
}

nav ul li a:hover {
  color: #960000;
  border-radius: 5px;
}
