/* General styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 20px; /* Min 20px margin from left and right */
  padding: 20px;
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Header */
h1 {
  margin-top: 20px;
  margin-bottom: 30px;
  margin-left: 20px;
  font-size: 36px;
  text-align: left;
}

/* Image styling */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Text content */
.page-content {
  margin: 0 20px;
}


/* Table */
table {
  width: 90%;
  border-collapse: collapse;
  margin: 0 20px;
  overflow-x: auto; /* Horizontal scrolling for small screens */
}

table, th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

/* Introduction section */
.list-with-icon-caption {
  margin-bottom: 30px;
}

/* Media Query for responsiveness */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  .container {
    padding: 10px;
  }

  /* Adjust any other styles as needed for smaller screens */
}
