.body-section {
  padding: 80px 20px; /* Increased padding for better spacing */
  background: #fff;
  text-align: center;
  max-width: 1000px; /* Adjusted max-width for larger screens */
  margin: 0 auto; /* Center align the section */
}

.body-section h2 {
  margin-top: 5px;
  font-size: 2.5em;
  margin: 20px 0; /* Added margin top and bottom */
  color: black;
}

.body-section h3 {
  margin-top: 5px;
  font-size: 2em;
  margin: 30px 0 10px; /* Added margin top, bottom, and reduced bottom margin */
  color: black;
}

.body-section p {
  font-size: 1.2em;
  color: black;
  margin: 10px 0; /* Added margin top and bottom */
}

.body-list {
  list-style: none;
  padding: 0;
}

.body-list li {
  font-size: 1.2em;
  margin: 10px 0; /* Added margin top and bottom */
  color: black;
}

.body-list h4 {
  margin-top: 5px;
  font-size: 1.5em;
  margin: 10px 0; /* Added margin top and bottom */
}

.body-list a {
  color: #333;
  text-decoration: none;
}

.body-list a:hover {
  text-decoration: underline;
}

section[id] {
  scroll-margin-top: 70px;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  .body-section {
    padding: 60px 10px; /* Adjusted padding for smaller screens */
    max-width: 600px; /* Reduced max-width for smaller screens */
  }

  .body-section h2 {
    font-size: 2em; /* Reduced font size for h2 on smaller screens */
    margin-top: 5px;
  }

  .body-section h3 {
    margin-top: 5px;
    font-size: 1.8em; /* Reduced font size for h3 on smaller screens */
  }

  .section-updates {
    font-size: 1.1em; /* Adjusted font size for smaller screens */
  }
}
