:root {
    --primary: #1a73e8;
    --text: #202124;
    --light-text: #5f6368;
    --bg: #f8f9fa;
    --border: #dadce0;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    margin: 0;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

nav {
    background: var(--white);
    padding: 1rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.logo { font-weight: bold; font-size: 1.2rem; text-decoration: none; color: var(--primary); }
.nav-links a { margin-left: 20px; text-decoration: none; color: var(--text); }

header { text-align: center; padding: 60px 20px; background: var(--white); }

.project-grid { padding: 40px 10%; display: grid; gap: 20px; }
.project-card { 
    background: var(--white); 
    padding: 25px; 
    border-radius: 12px; 
    border: 1px solid var(--border);
    transition: 0.3s;
}
.project-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.badge { background: #e8f0fe; color: var(--primary); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: bold; }

.legal-content { max-width: 800px; margin: 40px auto; padding: 40px; background: var(--white); border-radius: 8px; }

.warning-box { 
    background: #fff4f4; 
    border-left: 4px solid #d93025; 
    padding: 20px; 
    margin: 20px 0; 
}

footer { text-align: center; padding: 40px 10%; font-size: 0.9rem; color: var(--light-text); }
.disclaimer-mini { margin-bottom: 20px; font-style: italic; }

.btn-secondary { background: var(--primary); color: white; padding: 10px 20px; border-radius: 4px; text-decoration: none; display: inline-block; margin-top: 15px; }


.lead {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.warning-box {
    background: #fff4f4;
    border-left: 4px solid #d93025;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.warning-box h2, .warning-box h3 {
    margin-top: 0;
    color: #d93025;
    font-size: 1.2rem;
}