/* General body styling */
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family:ui-sans-serif, -apple-system, system-ui, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, Helvetica, Apple Color Emoji, Arial, Segoe UI Emoji, Segoe UI Symbol;
  margin: 0;
    padding: 0;
    min-height: 100vh;
    -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
  }
  
  html {
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
  }
  
  /* Top bar styling */
  .top-bar a {
    text-decoration: none;
    color: inherit;
  }
  .top-bar {
    background-color:#37525b;
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 30px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: padding-left 1s;
  }
  
  .bar-image {
    height: 40px;
  width: 40px;
  transition: height 0.5s, width 0.5s;
  }
  
  .bar-text {
    color: #ffffff;
    font-size: 25px;
    font-weight: bold;
    margin-left: 10px;
    transition: font-size 0.5s;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }

  /* Responsive styling for top bar */
@media screen and (max-width: 600px) {
  .top-bar {
    padding-left: 20px;
  }
  .bar-image {
    height: 30px;
    width: 30px;
  }
  .bar-text {
    font-size: 22px;
  }
}

  /* Main content container */
  .first-container {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ecf0f1;
    padding-top: 100px;
    padding-bottom: 80px;
    box-sizing: border-box;
  }
  
  /* Content styling */
  .content {
    width: 90%;
    max-width: 1200px;
    height: auto;
    padding: 20px 20px;
    margin: 40px auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
  }
  
  .content:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .content h1, .content h2 {
    color: #333;
  }
  
  .content p, .content ul {
    line-height: 1.5;
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .content ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .content li {
    margin-bottom: 10px;
  }
  /* Bottom panel styling */
.bottom-panel {
  background-color:#37525b;
  color: #ffffff;
  width: 100%;
  text-align: center;
  padding: 30px 0;
}

.bottom-panel p {
  margin: 5px 0;
}

.bottom-links {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}

.bottom-links a {
  color: #A3D9E0;   /* pale teal  — contrast ≈4.8:1 */
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 10px;
}


.bottom-links a:hover,
.bottom-links a:focus {
  color: #FFC857;           /* or whatever hover color you choose */
  text-decoration: underline;
}

.cookie-policy {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .bottom-links a {
    margin: 2px 0;
  }
}
