body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  display: flex;
  background-color: #000;
  color: #aeaeae;
  font-size: 14px;
}


h1, h3, h4, h5 {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}

h3 {
  font-size: 1.2em;
  margin: 10px 0px;
}

#sidebar {
  width: 20%;
  background-color: #000;
  color: #fff;
  position: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  border-right: 1px solid #2c2c2c;
}

.main-content {
  margin-left: 20%;
  flex: 1;
}

.hero {
  height: 100vh;
  background: url('skyscrapers.webp') no-repeat center center/cover;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  /* Ensures stacking */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  /* Optional padding for smaller screens */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 1;
}

.hero h1,
.hero p,
.hero a {
  position: relative;
  z-index: 2;
}

.section {
  padding: 80px 50px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.section.dark {
  background-color: #000;
}

.section.dark .content {
  margin-bottom: 30px;
}

.section h2 {
  width: 100%;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.section .content {
  flex: 1 1 45%;
  text-align: left;
}

.footer {
  padding: 30px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.footer a {
  text-decoration: none;
  text-transform: uppercase;
}

/* Hide sidebar on mobile */
@media (max-width: 768px) {
  #sidebar {
    display: none;
  }

  .main-content {
    margin-left: 0;
    /* Adjust main content margin when sidebar is hidden */
  }
}
