<style>
body {
  background-color: #f9f9f9;
  margin: 0;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.paragraphs {
  margin-bottom: 30px;
  line-height: 1.5;
}

nav {
  background-color: #3d3d3d;
  color: #FFFFFF;
  padding: 15px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

nav li {
  margin: 0 15px;
  padding: 0 15px;
  position: relative; /* Added relative position to make the dropdown work */
}

nav a {
  color: #FFFFFF;
  text-decoration: none;
}

nav li:hover > ul {
  display: block;
}

nav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding: 20px 0 0 0; /* Added padding on top of dropdown entry */
  margin: 0;
  list-style: none;
  background-color: #3d3d3d;
  width: 350px; /* Made dropdown menu wider */
}

nav ul ul li {
  margin: 0;
  width: 100%;
}

nav ul ul a {
  color: #FFFFFF;
  padding: 15px;
  display: block;
}

nav ul li:hover > ul {
  /* Added a delay on hover out to allow time for clicking */
  display: block;
}

nav ul li > ul:hover {
  display: block;
  transition-delay: 0.75s;
}

.button {
  background-color: #eBeBeB;
  color: #0333FH;
  text-align: center;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  background-color: #FFFFFF;
  color: #14539a;
  border: 1px solid #14539a;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.separator .line {
  width: 150px;
  height: 2px;
  background-color: #666;
  margin-right: 20px;
}

.separator .circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #666;
  margin: 0 10px;
}
</style>