body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  /* Allow stacking navigation and content vertically */
  align-items: center;
  height: 100vh;
}

/* Navigation Bar Styling */
.navbar {
  background-color: #333;
  padding: 10px 0;
  position: sticky;
  top: 0;
  width: 100%;
  /* Full width across the screen */
  z-index: 1000;
  /* Keep it above other content */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Slight shadow for separation */
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.navbar ul li {
  display: inline;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  background-color: #007B5F;
  /* Green hover and active effect */
  border-radius: 5px;
}

/* Content Container */
.container {
  display: flex;
  gap: 20px;
  max-width: 1000px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: 20px;
  /* Ensure some spacing below the navbar */
}

/* Card Design */
.card {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
}

.highlight {
  color: #007B5F;
  font-weight: bold;
}

/* Separator */
.separator {
  height: 30px;
  background-color: #666464;
  margin: 20px 0;
}

/* Info Section */
.info-section {
  background-color: #ffcc00;
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    /* Stack items vertically on smaller screens */
    padding: 10px;
    /* Adjust padding for smaller screens */
  }

  .card {
    padding: 15px;
  }

  .card h1 {
    font-size: 20px;
    /* Reduce font size for smaller screens */
  }

  .card p {
    font-size: 14px;
    /* Reduce font size for smaller screens */
  }

  .navbar ul {
    flex-direction: column;
    /* Stack navbar items vertically */
    gap: 10px;
  }

  .navbar ul li a {
    font-size: 14px;
    /* Smaller font size for smaller screens */
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .navbar ul {
    justify-content: flex-start;
    padding-left: 10px;
    /* Align items to the left */
  }

  .navbar ul li a {
    padding: 8px;
    /* Adjust padding for smaller devices */
    font-size: 12px;
    /* Smaller font for very small screens */
  }

  .container {
    gap: 10px;
    /* Reduce gap between cards */
  }

  .card h1 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }
}