.nav-button {
    position: fixed;
    bottom: 30px;
    right:20px;
    z-index: 9999;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #c3ccdb;
    background-color: #1f364d;
    border: 2px solid #c3ccdb;
    border-radius: 25px;
    transition: background 0.3s;
    font-family: Tahoma, Verdana, Segoe UI, sans-serif;
}

.nav-button:hover {
    background-color: #c3ccdb;
    color: #1f364d;
}

.nav-back {
    position: fixed;
    bottom: 30px;
    left:20px;
    z-index: 9999;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    background-color: #c3ccdb;
    color: #1f364d;
    border: 2px solid #1f364d;
    border-radius: 25px;
    transition: background 0.3s;
    font-family: Tahoma, Verdana, Segoe UI, sans-serif;
}

.nav-back:hover {
    color: #c3ccdb;
    background-color: #1f364d;
}

nav {
  width: 100%;
  height: 60px;
  background-color: #1f364d;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  height: 100%;
}

nav li {
  flex-grow: 1;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
}

nav li:last-child {
  border-right: none;
}

nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c3ccdb;
  text-decoration: none;
  height: 100%;
  font-family: Tahoma, Verdana, Segoe UI, sans-serif;
  font-size: 16px;
  transition: background-color 0.3s ease;
  font-weight:bold;
}

nav a:hover {
  background-color: #c3ccdb;
  color: #1f364d;
}

body{
    margin:0;
}

header {
    background-image: url("background.jpeg");
    background-size: cover;
    background-position: center;
    height: 400px;
    width: 100%;
    justify-content: center;
    align-content: center;
    display: flex;
}

#title {
    background-color: #00000099;
    color: #c3ccdb;
    padding: 20px;
    width: 40%;
    margin: 50px;
    text-align: center;
    align-content: center;
    border-radius: 30px;
}

h1 {
    font-size: 40px;
    font-family: Tahoma, Verdana, Segoe UI, sans-serif;
}

.home {
    background-color: #c3ccdb;
    padding: 50px 40px;
    font-family: Tahoma, Verdana, Segoe UI, sans-serif;
    display: flex;
    flex-direction: column;
}

.content-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.column {
    flex: 1;
}

.intro {
    border-radius: 15px;
    padding: 35px;
    background-color: #28363f;
    color: #c3ccdb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.intro h2 {
    margin-top: 0;
    color: #ffffff;
    font-size: 28px;
}

.intro p {
    line-height: 1.7;
    font-size: 19px;
    margin-bottom: 0;
}

.map-side {
    display: flex;
    justify-content: center;
}

img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.button-row {
    display: flex;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 20px 65px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #c3ccdb;
    background-color: #1f364d;
    border: 2px solid #1f364d;
    border-radius: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin:20px;
}

.button:hover {
    background-color: #28363f;
    color: #ffffff;
    border-color: #28363f;
    transform: scale(1.03);
}