<style>
/* =========================
   RESET & BOX-SIZING
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BODY & TYPOGRAPHY
========================= */
body {
  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: #231f20;
  background-color: #fff;
}

/* =========================
   HEADER
========================= */
header {
  background: linear-gradient(135deg, #004f47 0%, #008376 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.logo img {
  height: 60px;
  width: auto;
}

nav {
  display: flex;
  gap: 25px;
  background: none;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #E6B625;
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
}

/* =========================
   RESPONSIVE NAV
========================= */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #004f47 0%, #008376 100%);
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }
  nav.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
}

/* =========================
   MAIN CONTENT
========================= */
main {
  padding: 50px 25px;
  max-width: 1000px;
  margin: auto;
  color: #231f20;
  background-color: #fff;
}

h1, h2, h3:not(.faq-item h3) {
  font-weight: 700;
  background: linear-gradient(90deg, #004f47 0%, #008376 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 { font-size: 2.4rem; margin-bottom: 20px; }
h2 { font-size: 1.6rem; margin-top: 30px; margin-bottom: 15px; }
h3 { font-size: 1.3rem; margin-top: 25px; }

p { margin-top: 12px; text-align: justify; }
ul, ol { margin-left: 20px; margin-top: 10px; }
figure { margin: 20px 0; }
figure img { width: 100%; height: auto; border-radius: 8px; }
figcaption { font-style: italic; font-size: 0.9rem; margin-top: 5px; color: #555; }
table { border-collapse: collapse; width: 100%; margin-top: 10px; }
th, td { border: 1px solid #ccc; padding: 8px 12px; text-align: left; }

/* Links */
main a { color: #0066cc; text-decoration: none; transition: 0.2s; }
main a:hover { color: #004b99; text-decoration: underline; }

/* =========================
   CONTACT FORM
========================= */
.contact-page form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-page form input,
.contact-page form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  width: 100%;
}

.contact-page form button {
  padding: 12px;
  background-color: #1e73be;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-page form button:hover { background-color: #155d8b; }
.contact-page iframe { width: 100%; height: 400px; border: 0; border-radius: 6px; margin-top: 20px; }

/* =========================
   FAQ
========================= */
.faq-item h3 {
  cursor: pointer;
  background: linear-gradient(135deg, #004f47 0%, #008376 100%);
  color: #fff;
  padding: 12px;
  border-radius: 6px;
}
.faq-item p {
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  margin: 0;
  background: #f4f4f4;
  border-left: 3px solid #004f47;
  transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
}
.faq-item.open p {
  max-height: 500px;
  padding: 12px;
  margin-top: 8px;
}

/* =========================
   FOOTER
========================= */
footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #494646 100%);
  color: #fff;
  padding: 60px 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer h3 { margin-bottom: 12px; color: #E6B625; }
footer a { color: #fff; text-decoration: none; }
footer a:hover { text-decoration: underline; }
.social-icons img { width: 32px; height: 32px; margin-right: 10px; }

/* =========================
   COPYRIGHT
========================= */
.copyright {
  background: linear-gradient(180deg, #1a1a1a 0%, #494646 100%);
  color: #fff;
  text-align: center;
  padding: 18px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* =========================
   BANNER SAFE
========================= */
.banner-container { position: relative; width: 100%; }
.banner-slide { display: none; }
.banner-slide.active { display: block; }
</style>