/* Ensure body and html take full height */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Flexbox container 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;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
  min-height: 100vh;
}

/* 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: 10px;
  box-sizing: border-box;
}

/* Container for the Google Form */
.contact-container {
  width: 90%;
  max-width: 1200px;
  padding: 20px 5px;
  margin-bottom: 20px; /* Adds space below the contact container */
  display: flex;
  background-color: #ffffff;
  flex-direction: column;
  align-items: center; /* Center children horizontally */
  justify-content: center; /* Center children vertically */
  box-sizing: border-box;
  border-radius: 10px;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.iframe {
  width: 100%;
  max-width: 1200px;
}

/* Heading styling */
.contact-container h1 {
  font-size: 2em;
  margin-bottom: 10px;
  text-align: center;
  color: #333;
}

/* Paragraph styling */
.contact-container p {
  font-size: 1.2em;
  margin-bottom: 20px;
  text-align: center;
  color: #555;
}



/* 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;
  }
}

