﻿        /* Apple-inspired CSS */
        :root {
            --apple-black: #1d1d1f;
            --apple-white: #f5f5f7;
            --apple-gray: #86868b;
            --apple-blue: #0066cc;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        
        body {
            background-color: var(--apple-white);
            color: var(--apple-black);
            line-height: 1.5;
            font-weight: 400;
        }
        
        /* Navigation */
        .navbar {
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
            height: 44px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
       .news-headline a{color:#1d1d1f} 
        .nav-container {
            max-width: 980px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            padding: 0 22px;
        }
        
        .logo {
            color: var(--apple-white);
            font-size: 21px;
            font-weight: 600;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
        }
        
        .nav-link {
            color: var(--apple-white);
            font-size: 12px;
            padding: 0 8px;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .nav-link:hover {
            opacity: 1;
        }
        
        /* Hero Products */
        .product-showcase {
            display: flex;
            flex-wrap: wrap;
        }
        
        .product {
            flex: 1 1 50%;
            min-width: 320px;
            height: 100vh;
            min-height: 692px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .product-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .product-1 .product-content {
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .product-2 .product-content {
            color: var(--apple-black);
        }
        
        .product-name {
            font-size: 56px;
            font-weight: 600;
            margin-bottom: 6px;
        }
        
        .product-tagline {
            font-size: 28px;
            font-weight: 400;
            margin-bottom: 18px;
        }
        
        .product-links {
            margin-top: 24px;
        }
        
        .product-link {
            font-size: 21px;
            color: var(--apple-blue);
            text-decoration: none;
            margin: 0 20px;
            text-shadow: none;
        }
        
        .product-link:hover {
            text-decoration: underline;
        }
        
        /* News Section */
        .news-section {
            padding: 80px 20px;
            max-width:100%;
            margin: 0 auto;
        }
        
        .news-title {
            font-size: 40px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 60px;
            color: var(--apple-black);
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
        }
        
        .news-item {
            background-color: white;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        
        .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .news-content {
            padding: 30px;
        }
        
        .news-date {
            color: var(--apple-gray);
            font-size: 12px;
            margin-bottom: 8px;
        }
        
        .news-headline {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--apple-black);
        }
        
        .news-excerpt {
            color: var(--apple-gray);
            font-size: 14px;
        }
        
        /* Footer */
        footer {
            background-color: var(--apple-white);
            padding: 20px;
            text-align: center;
            font-size: 12px;
            color: var(--apple-gray);
            border-top: 1px solid #d2d2d7;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .product {
                flex: 1 1 100%;
                height: 50vh;
                min-height: 500px;
            }
            
            .product-name {
                font-size: 40px;
            }
            
            .product-tagline {
                font-size: 24px;
            }
            
            .news-title {
                font-size: 32px;
            }
            
            .nav-links {
                display: none; /* Would replace with hamburger menu in production */
            }
            
            .nav-container {
                justify-content: center;
            }
        }