:root {
    --primary: #1a2a6c;
    --accent: #fdbb2d;
    --text: #333;
    --light: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: var(--text);
    line-height: 1.6;
}

.container { width: 85%; max-width: 1100px; margin: auto; }

nav {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    background: white;
}

nav a { text-decoration: none; color: var(--primary); margin-left: 20px; font-weight: 600; }

.hero {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: white;
    padding: 100px 10%;
    text-align: center;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 10px; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.card {
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-5px); }

.img-placeholder {
    background: #ddd;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
}

footer { text-align: center; padding: 40px; font-size: 0.9rem; color: #777; }