
:root { --primary: #0F172A; --secondary: #3B82F6; --accent: #F97316; --light: #F8FAFC; --text: #334155; }
body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: var(--text); background: var(--light); margin: 0; padding: 0; }
.container { max-width: 1000px; margin: 0 auto; padding: 20px; }
header { background: var(--primary); color: white; padding: 1rem 0; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
header .container { display: flex; justify-content: space-between; align-items: center; }
header h1 a { color: white; text-decoration: none; font-size: 1.5rem; font-weight: bold; }
nav a { color: #CBD5E1; text-decoration: none; margin-left: 20px; font-weight: 500; }
nav a:hover { color: white; }
.hero { background: white; padding: 40px; border-radius: 8px; text-align: center; margin-bottom: 40px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.hero img { max-width: 100%; height: auto; border-radius: 8px; margin-bottom: 20px; max-height: 400px; object-fit: cover;}
.btn { display: inline-block; background: var(--accent); color: white; padding: 12px 24px; text-decoration: none; border-radius: 6px; font-weight: bold; transition: background 0.3s; margin-top: 10px; }
.btn:hover { background: #ea580c; }
article { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
h1 { color: var(--primary); font-size: 2.2rem; margin-bottom: 1rem; line-height: 1.2; }
h2 { color: var(--secondary); font-size: 1.8rem; margin-top: 2rem; margin-bottom: 1rem; }
h3 { color: var(--primary); font-size: 1.4rem; margin-top: 1.5rem; }
p { margin-bottom: 1.2rem; font-size: 1.1rem; }
ul { margin-bottom: 1.2rem; }
li { margin-bottom: 0.5rem; }
.sidebar-box { background: #EFF6FF; padding: 20px; border-radius: 8px; margin-top: 40px; border: 1px solid #BFDBFE; }
.sidebar-box h3 { margin-top: 0; color: var(--primary); font-size: 1.2rem;}
.sidebar-box ul { list-style: none; padding: 0; }
.sidebar-box li { margin-bottom: 10px; border-bottom: 1px solid #DBEAFE; padding-bottom: 5px; }
.sidebar-box a { text-decoration: none; color: var(--secondary); font-weight: 500; }
.sidebar-box a:hover { text-decoration: underline; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.card { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); transition: transform 0.2s; }
.card:hover { transform: translateY(-5px); }
.card h3 { margin-top: 0; font-size: 1.3rem; }
.card a { color: var(--secondary); text-decoration: none; font-weight: bold; }
footer { background: var(--primary); color: #94A3B8; text-align: center; padding: 40px 0; margin-top: 60px; font-size: 0.9rem; }
footer a { color: #CBD5E1; text-decoration: none; }
footer p { margin: 10px 0; }
.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); border: 1px solid #E2E8F0; display: flex; justify-content: space-between; align-items: center; z-index: 1000; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .cookie-banner { flex-direction: column; text-align: center; gap: 10px; } header .container { flex-direction: column; gap: 10px; } nav { margin: 0; } }
@media (min-width: 769px) { .main-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; } }
