
        /* Custom CSS - Elegant Theme */
        :root { --sv-primary: #34495E; --sv-bg: #F8F9F9; }
        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Playfair Display', serif; }
        body { background: var(--sv-bg); color: #2C3E50; }
        .sv-navbar { padding: 40px 80px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(0,0,0,0.05); }
        .sv-logo { font-size: 2.2rem; font-style: italic; color: var(--sv-primary); letter-spacing: 2px; text-align: center; }
        .sv-menu { display: flex; flex-wrap: wrap; justify-content: center; }
        .sv-menu a { text-decoration: none; color: #2C3E50; margin-left: 30px; font-family: 'Lato', sans-serif; font-size: 0.9rem; letter-spacing: 1px; }
        .sv-hero-split { display: flex; height: 85vh; }
        .sv-hero-left { flex: 1; padding: 10% 8%; display: flex; flex-direction: column; justify-content: center; }
        .sv-hero-right { flex: 1; background: var(--sv-primary); border-bottom-left-radius: 100px; }
        .sv-hero-left h1 { font-size: 4rem; margin-bottom: 30px; font-weight: 400; line-height: 1.2; }
        .sv-hero-left p { font-family: 'Lato', sans-serif; line-height: 1.8; color: #7F8C8D; margin-bottom: 40px; font-size: 1.1rem; }
        .sv-link { display: inline-block; padding: 15px 50px; border: 1px solid var(--sv-primary); color: var(--sv-primary); text-decoration: none; font-family: 'Lato', sans-serif; font-size: 0.9rem; letter-spacing: 2px; }
        .sv-row { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
        .sv-product { width: calc(33.333% - 27px); margin-bottom: 50px; text-align: center; text-decoration:none; display:block; color:#2C3E50; transition: transform 0.3s; }
        .sv-product:hover { transform: translateY(-10px); }
        .sv-product img { width: 100%; height: 500px; object-fit: cover; }
        .sv-product h4 { font-size: 1.4rem; margin: 25px 0 10px; font-weight: 400; }
        .sv-product span { font-family: 'Lato', sans-serif; color: var(--sv-primary); font-weight:bold; }
        @media(max-width: 900px) { .sv-hero-split { flex-direction: column; } .sv-product { width: 100%; } .sv-hero-right { display: none; } }
        @media(max-width: 600px) {
            .sv-navbar { flex-direction: column; padding: 20px; }
            .sv-logo { margin-bottom: 15px; font-size: 1.8rem; }
            .sv-hero-split { height: auto; padding: 40px 10px; }
            .sv-hero-left h1 { font-size: 2.5rem; }
            .sv-product { width: 100%; }
        }
        