body {
  font-family: sans-serif;
  margin: 0;
  padding: 1rem;
  background-color: #111;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00bfff;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00bfff;
}



.container{
    display: flex;
}
/* Mobile-first styles */
header h1 {
  font-size: 1.5rem;
  text-align: center;
}

/* Larger screens */
@media (min-width: 768px) {
  header h1 {
    font-size: 2.5rem;
    text-align: left;
    color: #fff;
  }
}


.logo{
    border-radius: 80%;
    border: 2px solid black;
    display: flex;

}

.title{
    display: flex;
    color: rgb(208, 208, 222);
    text-align: left;
    margin:0px 20px 20px 20px;
    padding: 10px 10px 10px 10px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

 
    .left {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .right {
      flex: 1;
      min-width: 300px;
      padding: 20px;
      background-color: #1c2b45;
      border-left: 4px solid #fdd835;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }

    .title {
      font-size: 28px;
      font-weight: bold;
      color: #fdd835;
      margin-bottom: 20px;
    }

    .subtitle {
      font-size: 20px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 15px;
    }

     .text {
      font-size: 16px;
      line-height: 1.6;
      color: #d0d0d0;
    }

    .decor {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
    }

    .square {
      width: 20px;
      height: 20px;
      background-color: #fdd835;
    }

    .square.purple {
      background-color: #7e57c2;
    }

     @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }
    }

        .text-section {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .graphic-section {
      flex: 1;
      min-width: 300px;
      padding: 20px;
      text-align: center;
    }

    .title {
      font-size: 32px;
      font-weight: bold;
      color: #fdd835;
      margin-bottom: 20px;
    }

    .subtitle {
      font-size: 20px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 15px;
    }

        .description {
      font-size: 16px;
      line-height: 1.6;
      color: #d0d0d0;
    }

    .decor {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
    }

    .block {
      width: 20px;
      height: 20px;
      background-color: #fdd835;
    }

    .block.gray {
      background-color: #9e9e9e;
    }

    .cityscape {
      width: 100%;
      max-width: 400px;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }


    .section {
      margin-bottom: 60px;
    }

    .title {
      font-size: 32px;
      font-weight: bold;
      color: #fdd835;
      margin-bottom: 10px;
    }

    .subtitle {
      font-size: 20px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 25px;
    }

    .milestones {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    
    .card {
      background-color: #1c2b45;
      padding: 20px;
      border-left: 5px solid #fdd835;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
      border-radius: 8px;
    }

    .card h3 {
      font-size: 18px;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .card p {
      font-size: 15px;
      color: #d0d0d0;
      line-height: 1.6;
    }

        @media (max-width: 768px) {
      .title {
        font-size: 28px;
      }
      .subtitle {
        font-size: 18px;
      }
    }

    footer {
    text-align: center; /* Center the text horizontally */
    padding: 20px; /* Add some padding around the content */
    background-color: #f0f0f0; /* Light grey background */
    color: #555; /* Dark grey text color */
    font-size: 0.9em; /* Slightly smaller font size */
    margin-top: 40px; /* Add some space above the footer */
}

footer p {
    margin: 0; /* Remove default paragraph margin */
}


