/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background: #004080;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
}

header .logo {
  max-height: 50px;
  margin-right: 1rem;
}

header h1 {
  font-size: 1.2rem;
}

/* Nav */
nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
}

/* Mobile nav hidden by default */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #003366;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 1rem;
    border-radius: 0 0 6px 6px;
    z-index: 1000;
  }

  nav a {
    margin: 0.5rem 0;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  header h1 {
    font-size: 1rem;
  }
}

/* Main content */
main {
  padding: 2rem;
}

/* Accordion (Services/FAQ) */
.services-list, .faq-list {
  margin-top: 2rem;
}

.service-item, .faq-item {
  background: #fff;
  margin: 0.7rem 0;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-question, .faq-question {
  cursor: pointer;
  font-weight: bold;
  color: #004080;
  display: flex;
  align-items: center;
}

.service-question::before, .faq-question::before {
  content: "➤";
  margin-right: 0.5rem;
  color: #004080;
}

.service-answer, .faq-answer {
  display: none;
  margin-top: 1rem;
  color: #444;
}

.service-img-large {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 6px;
}

/* Footer */
footer {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
