
:root {
    --primary: #023020;
    --accent: #C5A059;
    --text-dark: #111111;
    --gray: #F9F9F9;
    --border: #E0E0E0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { font-family: 'Times New Roman', serif; background-color: #ffffff; color: var(--text-dark); line-height: 1.7; width: 100%; overflow-x: hidden; }

/* Responsive Navigation */
nav { position: absolute; width: 100%; top: 0; display: flex; justify-content: space-between; align-items: center; padding: 30px 5%; z-index: 1000; }
.logo { color: white; font-size: 1.6rem; font-weight: 700; letter-spacing: 3px; text-decoration: none; text-transform: uppercase; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: white; text-decoration: none; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }

@media (max-width: 768px) {
    nav { flex-direction: column; gap: 20px; padding: 20px; position: relative; background: var(--primary); }
    .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
}

/* Hero Section */
.hero { min-height: 85vh; width: 100%; background: linear-gradient(rgba(2, 48, 32, 0.75), rgba(2, 48, 32, 0.75)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069') center/cover no-repeat; display: flex; flex-direction: column; justify-content: center; align-items: center; color: white; text-align: center; padding: 60px 5%; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 400; margin-bottom: 25px; line-height: 1.1; }
.hero p { font-size: clamp(1rem, 3vw, 1.3rem); max-width: 800px; opacity: 0.85; font-style: italic; }

/* Content Sections */
section { padding: 100px 5%; max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 2.8rem; color: var(--primary); margin-bottom: 50px; position: relative; font-weight: 400; }
.section-title::after { content: ''; position: absolute; left: 0; bottom: -15px; width: 80px; height: 2px; background: var(--accent); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; }
.card { padding: 30px; border-bottom: 1px solid var(--border); transition: 0.4s; }
.card:hover { border-color: var(--accent); transform: translateY(-5px); }

/* Compliance Layout */
.compliance-box { background: var(--gray); padding: 50px; border-left: 6px solid var(--primary); width: 100%; }
.info-row { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #eee; flex-wrap: wrap; gap: 10px; }
.label { font-weight: bold; color: var(--primary); text-transform: uppercase; font-size: 0.9rem; }

/* Footer */
footer { background: var(--primary); color: white; padding: 60px 5%; text-align: center; }
.f-logo { font-size: 1.2rem; letter-spacing: 3px; display: block; margin-bottom: 15px; }
.f-info { opacity: 0.6; font-size: 0.8rem; letter-spacing: 1px; }

form input, form textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid var(--border); font-family: inherit; }
.btn { background: var(--accent); color: white; border: none; padding: 15px 40px; cursor: pointer; text-transform: uppercase; letter-spacing: 2px; }
