/* 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;
  min-height: 100vh;
}

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