/* Main Layout */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

header,
footer {
  background-color: #00264d;
  color: white;
  text-align: center;
  padding: 20px;
}

h1 {
  color: white;
}

h2,
h3 {
  color: #00264d;
}

main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: white;
}

ul {
  padding-left: 20px;
  margin-top: 10px;
}

.section {
  margin-bottom: 40px;
}

/* Navigation */
nav {
  background-color: #004080;
  padding: 10px;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 5px 10px;
  font-weight: bold;
  display: inline-block;
}

.nav-toggle {
  display: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  background: #004080;
  color: #fff;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  text-decoration: underline;
}


/* Hamburger Menu Icon */
.nav-icon {
  display: none;
  font-size: 2rem;
  background-color: #004080;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  text-align: left;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonial {
  background: #eef3f9;
  border-left: 5px solid #004080;
  padding: 20px;
  margin: 20px 0;
}

.client {
  font-style: italic;
  color: #666;
  margin-top: 10px;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background-color: #004080;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background-color: #003060;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; 
  width: 1px; 
  overflow: hidden; 
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; 
  border: 0;
}


.twenty-four {
  font-size: 0.75rem;
  font-style: italic;
  color: #666;
  margin-top: 5px;
}

.service-box {
  background: #eef3f9;
  padding: 20px;
  border-left: 5px solid #004080;
  margin-top: 20px;
}

.gdpr-consent {
  margin: 1em 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.gdpr-consent input[type="checkbox"] {
  margin-right: 6px;
}

/* Blockquote & Footer Link */
blockquote {
  font-style: italic;
  color: #004080;
}

blockquote span {
  display: block;
  margin-top: 5px;
  font-weight: bold;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

/* Expandable FAQ Style */
.faq-item {
  margin-bottom: 20px;
  padding: 15px 10px;
  background: #fff;
  border-left: 5px solid #004080;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 38, 77, 0.1);
}

.faq-item summary {
  font-weight: bold;
  font-size: 1.05rem;
  color: #004080;
  cursor: pointer;
  outline: none;
  list-style: none;
}

.faq-item summary::marker {
  display: none;
}

.faq-item p {
  margin-top: 10px;
  line-height: 1.5;
}

.question {
  font-weight: bold;
  color: #004080;
}

.answer {
  margin-top: 5px;
}

.callout-box {
  background: #eef3f9;
  padding: 20px;
  border-left: 5px solid #004080;
  margin-top: 20px;
}

.disclaimer-box {
font-size: 0.75rem; 
color: #555; 
border-top: 1px solid #ddd; 

}


/* Mobile Styles */
@media (max-width: 600px) {
  header img {
    width: 80px;
    height: auto;
  }

  .section,
  .service-box {
    padding: 15px;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  nav.show {
    display: flex;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .nav-icon {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #004080;
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
  }

  .nav-toggle:checked + .nav-icon + .nav-menu {
    display: flex;
  }

  .faq-item {
    padding-left: 5px;
    padding-right: 5px;
  }
}

