/* Global styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.custom-hr {
  border: none;
  height: 1px;
  background-color: lightgray;
  padding: 0px 20px;
}

#content {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Banner */
#banner {
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

#banner img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* Navigation */
#navigation {
  width: 100%;
  max-width: 1220px;
  margin: 10px auto;
  text-align: right;
}

#navigation ul {
  list-style-type: none;
  margin: 0px 20px 0px 0px;
  padding: 0px 0px 0px 20px;
}

#navigation ul li {
  display: inline;
  margin: 0px;
  padding: 0px 0px 0px 20px;
  position: relative;
}

#navigation ul li a {
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
}

#navigation ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 90%;
  height: 2px;
  background-color: blue;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#navigation ul li a:hover::before {
  transform: scaleX(1);
}

/* Hamburger menu - Base */
.toggle-menu-icon {
  display: none;
}

.toggle-menu-icon span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: black;
  margin-bottom: 5px;
  transition: background-color 0.3s ease;
}

/* Mobile navigation - Responsive */
@media screen and (max-width: 600px) {
  .toggle-menu-icon {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 110px;
    right: 10px;
    padding: 10px;
    z-index: 999;
  }

  #navigation ul {
    display: none;
    text-align: right;
    padding-right: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-top: none;
    position: relative;
    margin-top: 10px;
  }

  #navigation ul.active {
    display: inline-grid;
    width: 100%;
    text-align: left;
    padding: 10px;
  }

  #navigation ul li {
    display: block;
    padding: 10px 0;
  }
}

/* Footer */
#contentFooter {
  text-align: center;
  padding: 0px 10px;
}

#contentFooter p {
  margin: 5px 0;
}

#contentFooter p:first-of-type {
  font-size: 16px;
  margin-bottom: 5px;
}

#contentFooter p:last-of-type {
  font-size: 14px;
}

#contentFooter a {
  text-decoration: none;
  color: #1b00ee;
}

#contentFooter a:hover {
  color: #0056b3;
}

/* Responsive image layout */
#row {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.column-banner {
  flex: 1 1 20%;
  padding: 0 3px;
  box-sizing: border-box;
  text-align: center;
}

.column-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 800px) {
  .column-banner {
    flex: 1 1 50%;
  }
}

@media screen and (max-width: 600px) {
  .column-banner {
    flex: 1 1 100%;
  }
}

/* Container for image map */
.container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.container img {
  width: 100%;
  height: auto;
}

/* Hotspot image map */
.hotspot {
  position: absolute;
  top: 50%;
  height: 20%;
  transform: translateY(-50%);
}

#hotspot1 { left: 0%; width: 20%; }
#hotspot2 { left: 20%; width: 20%; }
#hotspot3 { left: 40%; width: 20%; }
#hotspot4 { left: 60%; width: 20%; }
#hotspot5 { left: 80%; width: 20%; }

.hotspot a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Under construction block */
.containerConstruction {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.containerConstruction h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.containerConstruction p {
  font-size: 18px;
  margin-bottom: 20px;
}

.construction-icon {
  width: 100px;
  height: 100px;
  fill: #666;
  margin-bottom: 20px;
}

/* Table styling */
table.MsoNormalTable {
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}


table.MsoNormalTable {
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}

table.MsoNormalTable td,
table.MsoNormalTable th {
  border: 1px solid #ddd;
  padding: 12px 10px; /* updated spacing */
  line-height: 1.5;
  text-align: left;
}



table.MsoNormalTable th {
  background-color: #1c4686;
  color: white;
  font-weight: bold;
  padding: 8px;
  border-bottom: 2px solid #ddd;
}

thead .MsoNormal {
  color: white;
}

/* Title heading */
#header_title {
  text-align: center;
  font-size: 24px;
  margin: 20px 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
#navigation a,
#navigation a:visited {
  color: black;
  font-weight: normal;
}

#navigation a strong {
  color: inherit;
  font-weight: bold;
}

