* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Futura", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 15px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 12, 41, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  backdrop-filter: blur(10px);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container a {
  text-decoration: none;
}

.logo {
  font-size: 32px;
  font-style: italic;
  color: #fffff0;
  font-weight: 400;
  margin-right: 10px;
}

.companyLogo {
  width: 92px;
  height: 73px;
  margin-right: 10px;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  margin-left: 35px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #fffff0;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #fffff0;
}

nav a:hover::after {
  width: 100%;
}

#map {
  position: absolute;
  top: 250px;
  width: 100%;
  height: calc(100% - 250px - 48px);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}
section {
  position: fixed;
  top: 70px;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: rgba(15, 12, 41, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

section h3 {
  color: #fffff0;
  font-size: 34px;
  font-weight: 500;
}

section p {
  color: #fff;
  font-size: 15px;
  margin-top: 10px;
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(15, 12, 41, 0.9);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  border-top: 1px solid rgba(0, 255, 204, 0.2);
  backdrop-filter: blur(10px);
  z-index: 100;
}

footer p {
  margin: 0;
  color: #fff;
}

footer a {
  color: #00ffcc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  header {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    font-size: 26px;
  }

  .companyLogo {
    width: 35px;
    height: 35px;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
  }

  nav a {
    font-size: 16px;
    margin-left: 0;
    margin-top: 8px;
  }

  section {
    height: auto;
    padding: 15px;
    text-align: center;
  }

  section h3 {
    font-size: 26px;
  }

  #map {
    top: 200px;
    height: calc(100% - 200px);
  }
}

@media (max-width: 1024px) {
  header {
    padding: 15px 40px;
  }

  nav a {
    font-size: 17px;
    margin-left: 20px;
  }

  section {
    height: auto;
  }
}
