﻿        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            overflow-x: hidden;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 10px 5%;
            background-color: rgba(255, 255, 255, 0.95);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            text-decoration: none;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #0066ff;
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
        }
        
        /* Full-screen Product Sections */
        .product-section {
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            padding: 0 10%;
            position: relative;
            overflow: hidden;
        }
        
        #product1 {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        
        #product2 {
            background: linear-gradient(135deg, #e0f7fa 0%, #80deea 100%);
        }
        
        .product-content {
            width: 50%;
            z-index: 2;
        }
        
        .product-image {
            position: absolute;
            right: 10%;
            height:70%;
            max-width: 50%;
            object-fit: contain;
            z-index: 1;
        }
        
        .product-title {
            font-size: 48px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .product-description {
            font-size: 18px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 30px;
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: #0066ff;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: background-color 0.3s, transform 0.3s;
        }
        
        .cta-button:hover {
            background-color: #0052cc;
            transform: translateY(-3px);
        }
        
        /* News Section */
        .news-section {
            padding: 80px 6%;
            background-color: #f9f9f9;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            color: #333;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }
        
        .news-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
        }
        
        .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .news-content {
            padding: 20px;
        }
        
        .news-date {
            font-size: 14px;
            color: #777;
            margin-bottom: 10px;
        }
        
        .news-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .news-excerpt {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 15px;
        }
        
        .read-more {
            color: #0066ff;
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 50px 10% 20px;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
        }
        
        .copyright {
            font-size: 14px;
            color: #aaa;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .product-content {
                width: 60%;
            }
            
            .product-image {
                right: 5%;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s;
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .product-section {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                padding: 0 5%;
            }
            
            .product-content {
                width: 100%;
                margin-bottom: 40px;
            }
            
            .product-image {
                position: relative;
                right: auto;
                max-width: 80%;
                height: auto;
            }
        }
        
        @media (max-width: 480px) {
            .product-title {
                font-size: 36px;
            }
            
            .product-description {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }