/* 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: #B8D9FF;
  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;
  margin-right: 10px; /* Space between the image and the text */
  margin-left: 5px; 
}

.bar-text {
  color: #333;
  font-size: 22px;
  font-family: 'Arial';
}


/* Responsive styling for top bar */
@media screen and (max-width: 600px) {
  .top-bar {
    padding-left: 20px;
  }

  .bar-image {
    height: 35px;
    width: 35px;
  }

  .bar-text {
    font-size: 22px;
  }
}
@media screen and (max-width: 400px) {
  .top-bar {
    padding-left: 10px;
  }
  .bar-image {
    height: 35px;
    width: 35px;
    margin-right: 10px;
  }
  
.bar-text {
  font-size: 20px;
}
}
/* Main content container */
.first-container {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  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: #B8D9FF;
  color: #333;
  width: 100%;
  text-align: center;
  padding: 50px 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: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 10px;
}


.bottom-links a:hover {
  color: #ff0000
}


.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;
  }
}

