/* WLDGRC — Shared Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; background: #2b2b2b; color: #fff; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* NAV */
nav { position: absolute; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 24px 50px; }
nav.static-nav { position: static; background: #222; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 50px; }
nav .logo img { height: 72px; filter: brightness(0) invert(1); }
nav ul { list-style: none; display: flex; gap: 36px; align-items: center; }
nav ul li a { color: #fff; font-size: 0.85rem; letter-spacing: 0.05em; opacity: 0.9; transition: opacity 0.2s; }
nav ul li a:hover, nav ul li a.active { opacity: 1; text-decoration: underline; }

/* BUTTONS */
.btn-white { display: inline-block; background: #fff; color: #222; padding: 14px 30px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; border-radius: 2px; transition: background 0.2s; }
.btn-white:hover { background: #e0e0e0; }
.btn-outline { display: inline-block; border: 1px solid #fff; color: #fff; background: transparent; padding: 14px 36px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px; transition: background 0.2s, color 0.2s; }
.btn-outline:hover { background: #fff; color: #222; }

/* PAGE HEADER */
.page-header { background: #222; text-align: center; padding: 70px 40px 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.page-header h1 { font-size: 2.4rem; font-weight: 700; }
.page-header p { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ACCORDION */
.accordion-item { border-top: 1px solid rgba(255,255,255,0.2); }
.accordion-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.2); }
.accordion-header { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; font-size: 1rem; font-weight: 400; color: #fff; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; letter-spacing: 0.02em; }
.accordion-toggle { font-size: 1.5rem; color: rgba(255,255,255,0.7); flex-shrink: 0; }
.accordion-body { display: none; padding: 0 0 30px; color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.8; }
.accordion-body.open { display: block; }
.accordion-body ul { padding-left: 22px; margin-top: 10px; }
.accordion-body ul li { margin-bottom: 8px; }
.accordion-body strong { color: #fff; }

/* FOOTER */
footer { background: #2b2b2b; border-top: 1px solid rgba(255,255,255,0.1); padding: 60px 50px 40px; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; }
footer h4 { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 14px; font-weight: 600; }
footer a { display: block; color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 8px; transition: color 0.2s; }
footer a:hover { color: #fff; }
footer p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-logo img { height: 70px; filter: brightness(0) invert(1); }
.footer-center { text-align: center; }
.footer-center .company { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.footer-inline-links { margin-top: 14px; display: flex; justify-content: center; gap: 20px; }
.footer-inline-links a { display: inline; margin: 0; text-decoration: underline; }
.footer-copy { max-width: 1100px; margin: 40px auto 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav, nav.static-nav { padding: 18px 24px; }
  nav ul { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-copy { flex-direction: column; gap: 4px; }
  footer { padding: 50px 24px 30px; }
}
@media (max-width: 580px) { nav ul { display: none; } }
