
    :root { --primary: #002d40; --accent: #006ed2; --white: #ffffff; --black: #000000; }
    body { font-family: 'Arial', sans-serif; margin: 0; color: #333; line-height: 1.6; }
    img { max-width: 100%; height: auto; }
    .container { max-width: 1200px; margin: auto; padding: 0 20px; }
    
    header { background: var(--primary); color: var(--white); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
    .logo img { height: 60px; }
    nav a { color: var(--white); text-decoration: none; margin-left: 20px; font-weight: bold; }
    
    .hero { background: url('/assets/quinn-bg-2.jpg') center/cover no-repeat; height: 60vh; display: flex; align-items: center; justify-content: center; color: var(--white); text-align: center; }
    .hero h1 { font-size: 3rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
    
    .content-section { padding: 50px 0; }
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .card { border: 1px solid #ddd; padding: 20px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
    
    footer { background: var(--black); color: var(--white); text-align: center; padding: 40px 0; margin-top: 50px; }
    
    @media (max-width: 768px) { header { flex-direction: column; } nav { margin-top: 15px; } }
