body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-image: url(images/bgnorm.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

h2 {
   font-size: 2.5rem; 
   margin-bottom: 0.5rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

img {
  max-width: 300px;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}


.logo-container {
  position: absolute;
  height: 10px;
  width: auto;  
  top: 15px;              
  left: 0;            
  padding: 10px;       
}


form {
    max-width: 400px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.9); /* light background for contrast */
    padding: 20px;
    border-radius: 10px;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

  form button {
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  form button:hover {
    background-color: #0056b3;
  }
  
  #form-status {
    margin-top: 10px;
    font-weight: bold;
  }
 .form-section {
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.95); /* light card background */
    border: 2px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links {
    display: flex;
    justify-content: center; /* Or space-between/space-around */
    list-style: none;
    background-color: #333;
    padding: 10px 0;
    margin: 0;
  }
  
  .nav-links li {
    margin: 0 15px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
  }
  
  .nav-links a:hover {
    background-color: #007bff;
    border-radius: 5px;
  }
  
    