
    :root {
        --primary: #c99d51;
        --dark: #000;
        --light: #fff;
        --accent: #006da3;
    }
    body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; margin: 0; color: #333; line-height: 1.6; }
    header { background: var(--dark); padding: 1rem 0; color: var(--light); display: flex; justify-content: space-between; align-items: center; padding: 0 5%; }
    .logo { font-weight: bold; font-size: 1.5rem; color: var(--primary); text-decoration: none; }
    nav ul { list-style: none; display: flex; gap: 20px; }
    nav a { color: var(--light); text-decoration: none; font-weight: bold; }
    .hero { height: 60vh; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), #333; display: flex; align-items: center; justify-content: center; color: var(--light); text-align: center; }
    .container { max-width: 1100px; margin: auto; padding: 40px 20px; }
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
    .card { border: 1px solid #ddd; padding: 20px; text-align: center; border-radius: 8px; }
    .card-img { height: 200px; background: #eee; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; color: #888; border-radius: 4px; }
    footer { background: var(--dark); color: var(--light); text-align: center; padding: 20px; margin-top: 40px; }
    .btn { background: var(--primary); color: #fff; padding: 10px 20px; text-decoration: none; display: inline-block; border-radius: 4px; }
    @media (max-width: 768px) { nav { display: none; } .hero { height: 40vh; } }
