/* Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    background-color: #004080;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

main {
    max-width: 800px;
    margin: auto;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

h1, h2 {
    margin-top: 0;
}
 h2 a {
    color: #333;;
 }
 
section {
    padding-top: 1rem;
    margin-bottom: 1rem;
}

ul {
    padding-left: 1.2rem;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #e0e0e0;
    margin-top: 2rem;
}

.pdf {
  height: 100pc;
}

.link-content {
  flex: 1;
  top: auto;
  text-align: center;
}

.link-content img {
  border-radius: 5%;
}

.links {
  line-height: 1.0;
  text-align: left;
}

.index-text-content {
  flex: 1;
  flex-grow: 5;
}

.sections-wrapper {
  display: block; /* Sections stack vertically by default */
}

.content-section {
  display: flex;
  /*align-items: center;*/
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid #ddd; /* Optional: to visually separate the sections */
}

.text-content {
  flex: 1;
}

.image-content img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
}

.dropbtn {
  background-color: #004080;
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: white;
  font-weight: bold;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}