:root { --bg-black: #050505; --card-bg: #111111; --accent-green: #2ecc71; --text-gray: #a0a0a0; --text-light: #f0f0f0; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--bg-black); color: var(--text-light); font-family: sans-serif; line-height: 1.6; overflow-x: hidden; }

.navbar { position: fixed; top: 0; width: 100%; height: 60px; background: rgba(5, 5, 5, 0.98); display: flex; justify-content: flex-end; align-items: center; padding: 0 10%; z-index: 99999; }
.nav-list { display: flex; list-style: none; }
.nav-list li { margin-left: 25px; }
.nav-list a { color: var(--text-light); text-decoration: none; font-weight: bold; }
.nav-list a:hover { color: var(--accent-green); transition: 0.3s; }

/* The Mobile Button */
.menu-toggle { 
    display: none; 
    background: transparent; 
    border: none; 
    cursor: pointer; 
    padding: 10px; 
    z-index: 100000; 
    position: relative;
    -webkit-appearance: none;
    outline: none;
}
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background: var(--accent-green); transition: 0.3s; }

@media screen and (max-width: 768px) {
    .menu-toggle { display: block; }
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .nav-list { position: fixed; top: 0; left: -100%; flex-direction: column; background: var(--bg-black); width: 100%; height: 100vh; justify-content: center; text-align: center; transition: 0.4s; z-index: 99998; }
    .nav-list.active { left: 0; }
    .nav-list li { margin: 20px 0; }
    .nav-list a { font-size: 1.5rem; }
.nav-list a:hover { color: var(--accent-green); transition: 0.3s; }
}

header { padding: 100px 0 40px 0; text-align: center; }
.logo { width: 80%; max-width: 600px; height: auto; display: block; margin: 0 auto; }
@media (max-width: 600px) { .logo { width: 100% !important; } }
.container, footer { width: 80%; margin: 0 auto; }
p, .intro-list li { font-size: 1.1rem; margin-bottom: 1.5rem; }
.intro-list { list-style: none; padding: 0; }
.section-title { color: var(--accent-green); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; border-bottom: 1px solid #222; padding-bottom: 10px; font-size: 1.5rem; }
.pillars-grid { display: flex; flex-direction: column; gap: 25px; }
.pillar-card { background: var(--card-bg); padding: 30px; border: 1px solid #222; border-radius: 4px; }
.pillar-number { color: var(--accent-green); font-weight: bold; margin-bottom: 10px; display: block; }
.pillar-card h3 { margin-bottom: 20px; font-size: 1.4rem; color: #fff; }
.pillar-card ul { list-style: none; padding-left: 0; }
.pillar-card ul li { position: relative; padding-left: 25px; margin-bottom: 15px; font-size: 1.05rem; color: var(--text-gray); }
.pillar-card ul li::before { content: "•"; color: var(--accent-green); position: absolute; left: 0; font-size: 1.2rem; }
.sub-list { margin-top: 10px; margin-left: 10px; }
.sub-list li { margin-bottom: 5px !important; font-size: 0.95rem !important; }

.contact-form { display: flex; flex-direction: column; gap: 15px; background: var(--card-bg); padding: 30px; border: 1px solid #222; border-radius: 4px; }
.contact-form input, .contact-form textarea { background: #000; border: 1px solid #333; color: #fff; padding: 12px; }
.contact-form button { background: var(--accent-green); color: #000; border: none; padding: 15px; font-weight: bold; cursor: pointer; }
.captcha-box { display: flex; align-items: center; gap: 10px; font-weight: bold; color: var(--accent-green); }

footer { text-align: center; padding: 40px 0; border-top: 1px solid #222; margin-top: 60px; color: var(--text-gray); font-size: 0.8rem; }

/* Specific styling for the Privacy "Nothing to Hide" link */
.privacy-link {
    color: #00f !important;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline !important;
}
