:root {
    --primary: #1e3a8a;
    --accent: #d97706;  
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --success: #16a34a;
}
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', system-ui, sans-serif; }
body { color: var(--text-dark); line-height: 1.7; background-color: #ffffff; }

header { background: #ffffff; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
.nav-container { width: 90%; max-width: 1200px; margin: auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.brand { font-size: 26px; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.brand span { color: var(--accent); }
nav { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; }
nav a { color: var(--text-dark); text-decoration: none; font-size: 15px; font-weight: 600; transition: 0.2s; }
nav a:hover { color: var(--primary); }

.hero { 
    background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(15, 23, 42, 0.95)), url('https://unsplash.com') no-repeat center center/cover;
    color: white; padding: 100px 20px; text-align: center; 
}
.hero h1 { font-size: 46px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 20px; max-width: 750px; margin: 0 auto 35px; color: #cbd5e1; }

.btn { display: inline-block; background: var(--accent); color: white; padding: 14px 30px; text-decoration: none; border-radius: 6px; font-weight: bold; transition: 0.3s; border: none; font-size: 16px; text-align: center; cursor: pointer; }
.btn:hover { background: #b45309; transform: translateY(-2px); }
.btn-nav { background: var(--primary); padding: 8px 18px; border-radius: 5px; color: white; }
.btn-nav:hover { color: white; background: #1d4ed8; }

section { padding: 80px 20px; max-width: 1200px; margin: auto; }
.section-bg { background-color: var(--bg-light); width: 100%; padding: 80px 20px; }
.container { max-width: 1200px; margin: auto; }
h2 { color: var(--primary); font-size: 34px; font-weight: 700; margin-bottom: 15px; position: relative; }
h2::after { content: ''; display: block; width: 60px; height: 4px; background: var(--accent); margin-top: 10px; border-radius: 2px; }
.subtitle { font-size: 18px; color: #64748b; margin-bottom: 40px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 20px; }
.card { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); border-top: 4px solid var(--primary); transition: 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.card h3 { color: var(--primary); font-size: 20px; margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; }
.card p { color: #475569; font-size: 15px; }
.badge { background: #e0f2fe; color: #0369a1; padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: bold; }

.table-container { overflow-x: auto; margin-top: 30px; background: white; border-radius: 12px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); }
table { width: 100%; border-collapse: collapse; min-width: 700px; }
th, td { padding: 16px; text-align: left; border-bottom: 1px solid #e2e8f0; }
th { background-color: var(--primary); color: white; font-weight: 600; }
tr:hover { background-color: #f1f5f9; }
.highlight-row { background-color: #f0fdf4; font-weight: 600; color: var(--success); }

.split-layout { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.split-text { flex: 1; min-width: 300px; }
.split-image { flex: 1; min-width: 300px; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.split-image img { width: 100%; display: block; object-fit: cover; }

form { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); max-width: 700px; margin: auto; }
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-weight: 600; color: #334155; }
input, select, textarea { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 15px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15); }

footer { background: #0f172a; color: #94a3b8; padding: 60px 20px 30px; text-align: center; font-size: 14px; width: 100%; margin-top: 60px; }
footer strong { color: white; font-size: 18px; }
footer hr { border: 0; height: 1px; background: #334155; margin: 30px 0; }
