
    :root {
        --primary: #1e73be;
        --secondary: #4DC7EC;
        --dark: #333333;
        --light: #f2f2f2;
        --white: #ffffff;
    }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; margin: 0; color: var(--dark); line-height: 1.6; }
    header { background: var(--white); padding: 20px 0; border-bottom: 2px solid var(--light); position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 0 5%; }
    #site-logo img { height: 60px; }
    nav ul { list-style: none; display: flex; gap: 20px; padding: 0; }
    nav a { text-decoration: none; color: var(--dark); font-weight: 600; }
    .hero { height: 60vh; background: url('/assets/Homepage-image.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; color: var(--white); text-align: center; }
    .container { max-width: 1100px; margin: auto; padding: 40px 20px; }
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .owner-img { max-width: 300px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
    footer { background: #383838; color: #ccc; padding: 40px 5%; text-align: center; }
    @media (max-width: 768px) { nav ul { flex-direction: column; text-align: center; } }
