h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem; /* Adjust size as needed */
    font-weight: bold;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

h3 {
    font-family: 'Consolas', 'Courier New', Tahoma, sans-serif; 
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.6rem; /* Adjust size as needed */
    font-weight: normal;
    margin-bottom: 1.5rem;
}



/* Navbar Styles */
.navbar {
    list-style-type: none;
    padding: 20px;
    margin: 0;
    background-color: #333;
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
}

.navbar li {
    margin: 0 10px;
}

.navbar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #FFD700;
}

.content-container {
    display: flex;
    justify-content: space-between; /* Space between text and image */
    align-items: flex-start; /* Align items to the top */
    padding: 20px; /* Padding around the container */
}

.text-section {
    flex: 1; /* Allow text section to grow */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: flex-start; /* Align text to the top */
    align-items: flex-start; /* Align text to the left */
    text-align: left; /* Align text to the left within the text section */
    background-color: #f8f8f8; /* Light background color */
    padding: 30px; /* Increase padding for more space */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Slightly larger shadow for depth */
    margin-right: 20px; /* Space between text sections */
}

.image-section {
    flex: 1; /* Allow image section to grow */
    display: flex;
    justify-content: flex-end; /* Align image to the right */
    padding: 30px; /* Increase padding for more space */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1)
}

.responsive-image {
    width: 100%; /* Image takes full width of the section */
    height: auto; /* Maintain aspect ratio */
    max-width: 500px; /* Set a max width for your image */
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.row {
    display: flex;
  }
  
  .column {
    flex: 60%;
    padding: 5px;
  }
  

.Previous {
    left: 10px; /* Position the Previous button on the left side */
  }
  
  /* Style for the Next button (right side) */
  .Next {
    right: 10px; /* Position the Next button on the right side */
  }

  * {
    box-sizing: border-box;
  }
  
  body {
    background-color: #f1f1f1;
    padding: 20px;
    font-family: Arial;
  }
  
  /* Center website */
  .main {
    max-width: 1000px;
    margin: auto;
  }
  
  
  
  /* Add padding BETWEEN each column (if you want) */
  .row,
  .row > .column {
    padding: 8px;
  }
  
  /* Create four equal columns that floats next to each other */
  .column {
    float: left;
    width: 25%;
  }
  
  /* Clear floats after rows */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Content */
  .content {
    background-color: white;
    padding: 10px;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 900px) {
    .column {
      width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
    }
  }

  .Navigation-container {
    bottom: 20px; /* Distance from the bottom */
    width: 100%; /* Full width of the page */
    display: flex;
    justify-content: space-between; /* Space between Previous and Next */
    padding: 0 20px; /* Padding for left and right space */
}

/* Common style for the buttons */
.page-navigation {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

/* Hover effect for the buttons */
.page-navigation:hover {
    background-color: #FFD700; /* Hover color */
}

/* Position Previous Button on Bottom Left */
.page-navigation.previous {
    margin-left: 0;
}

/* Position Next Button on Bottom Right */
.page-navigation.next {
    margin-left: auto; /* Automatically pushes it to the right */
}