
    :root {
        --primary: #cf2e2e;
        --secondary: #3182ce;
        --dark: #1a202c;
        --light: #edf2f7;
        --text: #32373c;
    }
    body { font-family: 'Roboto', sans-serif; margin: 0; color: var(--text); line-height: 1.6; }
    header { background: #fff; padding: 20px; border-bottom: 3px solid var(--primary); display: flex; justify-content: space-between; align-items: center; }
    .logo { font-weight: 900; font-size: 1.5rem; color: var(--primary); text-decoration: none; display: flex; align-items: center; }
    .logo::before { content: 'CP'; background: var(--primary); color: #fff; padding: 5px 10px; margin-right: 10px; border-radius: 4px; }
    nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
    nav a { text-decoration: none; color: var(--dark); font-weight: 600; }
    .hero { background: var(--dark); color: #fff; padding: 100px 20px; text-align: center; }
    .hero-img { width: 100px; height: 100px; margin-bottom: 20px; }
    .container { max-width: 1000px; margin: auto; padding: 40px 20px; }
    section { margin-bottom: 60px; }
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .card { padding: 20px; border: 1px solid #ccc; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
    footer { background: var(--primary); color: #fff; text-align: center; padding: 40px; }
    @media (max-width: 768px) { header { flex-direction: column; } nav ul { flex-direction: column; margin-top: 20px; } }
