body {
  font-family: "Georgia", serif;
  color: #0E2431;
  margin: 0;
  line-height: 1.6;
  background: #FBF9F5;
}

header, section {
  padding: 10px 20px;
  max-width: none;
  margin: auto;
}

header {
  text-align: center;
  padding: 20px 20px;
  border: none;
}

header .container {
  padding-top: 40px;
}

.container {
  max-width: 2000px;
  margin: auto;
  padding: 5px 10px;
}

header img {
  max-width: 200px;
  margin-bottom: -25px;
}

h1, h2 {
  font-family: "Georgia", serif;
  margin-bottom: 20px;
  color: #1B3A57;
}

p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
}

h1, h2, p {
  margin-top: 0;
  margin-bottom: 15px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1B3A57;
  padding: 20px 0;
  text-align: center;
}

nav a {
  color: #F7F5F1;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
}

nav a:hover {
  text-decoration: underline;
}

.image-section {
  width: 100%;
  height: 500px; /* adjust as you want */
  overflow: hidden;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: middle; /* or center or top as needed */
}

.img_pav{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* or center or top as needed */
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #0E2431;
  background: #F5F1EB;
  color: #0E2431;
  font-family: "Georgia", serif;
  font-size: 14px;
}

.contact-form button {
  padding: 12px;
  background: #0E2431;
  color: #F5F1EB;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background: #1B3A57;
}

/* Footer */
footer {
  background: #1B3A57;
  color: #B8B8B8;
  text-align: center;
  padding: 20px;
}

footer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
}

/* Mobile Setting */

@media (max-width: 768px) {
  body {
    font-size: 18px; /* base font size for mobile */
    line-height: 1.7;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 20px;
  }

  nav a {
    font-size: 22px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 18px;
  }
}

/* Resize Silktide cookie icon */
#silktide-cookie-icon {
  width: 40px !important;   /* adjust to taste */
  height: 40px !important;
  bottom: 20px !important;  /* tweak position if needed */
  right: 20px !important;
}

#silktide-cookie-icon img,
#silktide-cookie-icon svg {
  max-width: 100% !important;
  max-height: 100% !important;
}

/* Hide Silktide floating cookie icon */
#silktide-cookie-icon { display: none !important; }

.cookie-settings-link {
  display: inline-block !important;
  margin-top: 10px;
  padding: 6px 12px;
  font-size: 12px;
  color: #B8B8B8;          
  background: #08324f;      /* your brand blue */
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-settings-link:hover {
  background: #06263c;      /* darker on hover */
}