.page-layout {
  display: flex;
  flex-wrap: wrap;
  min-height: 200vh; /* make the page long enough to scroll */
}

.sidebar {
  width: 200px;
  padding: 20px;
}

#menu {
  position: sticky;
  top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: rgb(1, 51, 58);
  padding: 20px;
  border-radius: 10px;
}

.img1 {
    filter:drop-shadow(0 0 10px rgb(1, 51, 58)); 
    position:sticky;
    top:250px;  
    width: 1250px;
    z-index: 1000;
} 

h1 {
   display:flex; color: aqua; font-family: sans-serif; font-weight: 300; align-content: center;
}

body {
  margin: 0;
  padding: 0;
  height: 325vh;
  background-image: url('images/1-9e219363.png'); 
  background-size:cover;
  background-position: center;
  background-repeat:no-repeat;
  filter:drop-shadow(0 0 10px rgb(4, 134, 151));
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items:flex-start;
  text-align: center;
  
  }

.content {
  flex: 1;
  min-width: 0;
  background-color: rgb(1, 51, 58); /* Optional overlay */
  padding: 50px;
  border-radius: 10px;
  line-height: 25px;
  margin-top: 50px;
  
}
ul {
  text-align:left;
}
a {
  text-decoration: none;
  color: white;
  
}
.contact-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background-image: url(images/1-9e219363.png);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-family: sans-serif
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077cc;
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background-color: #0077cc;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #005fa3;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .page-layout {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        padding: 10px;
    } 
    #menu {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
        padding: 10px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        border-radius: 0;
        z-index: 1001;
        background-color: rgb(1, 180, 204);
    }
    .img1 {
        width: 90vw;
        max-width: 300px;
        position: static;      /* override sticky */
        margin: 70px auto 20px auto; /* 70px to clear the fixed menu */
        display: block;
        top: auto;             /* override top */
        left: auto;            /* override left */
    }
    .content {
        width: 100%;
        padding: 15px;
        margin-top: 10px;
    }
    body {
        background-size: cover;
        background-position: center;
        min-height: 100vh;
        height: max-content;
        padding: 0;
        margin: 0;
        display: block;
    }
    h1 {
        font-size: 1.5em;
    }

.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 8px 0;
    background-color: #0077cc;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.btn:hover {
    background-color: #005fa3;
    color: #fff;
    text-decoration: none;
}
}