
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

body.page {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed; /* optional */
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  color: #010101; 
}
body.contactpage {
  background-image: url("../images/back25.jpg");
  
}
header {
    background-color: #eaefefdc;
    color: #fff;   
    min-height: 15opx;
  display: flex;
  align-items: center;
  justify-content: center;
} 
/* Top Menu (matches your earlier work) */
.top-menu {
  background-color: #f5f0f0;
  padding: 10px;
  text-align: center;
}

.top-menu a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  white-space: nowrap; /* prevents wrapping */
}

.top-menu a:hover {
  text-decoration: underline;
}
a{
      display: inline-block;
      padding: 8px 12px;
      margin: 5px;
      background-color: #065cb7;
      color: white;
      text-decoration: none;
      border-radius: 5px;
    }


.contact-page {
  max-width: 900px;
  margin: 30px auto;
  padding: 10px;
}

.contact-page h1 {
  text-align: center;
  margin-bottom: 5px;
}

.intro {
  text-align: center;
  margin-bottom: 20px;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  margin-bottom: 10px;
}

.contact-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
}

.contact-form button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #065cb7;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #555;
}

/* Privacy note */
.privacy {
  margin-top: 30px;
  font-size: 14px;
  color: #892c2c;
  font-weight: bold;
  text-align: center;
}


