﻿        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2c3e50;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #3498db;
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
        }

        /* Product Sections */
        .product-section {
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            text-align: center;
            scroll-snap-align: start;
        }

        #product1 {
            background-color: #f9f9f9;
        }

        #product2 {
            background-color: #f0f0f0;
        }

        #product3 {
            background-color: #e9e9e9;
        }

        .product-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .product-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .product-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #7f8c8d;
        }

        .product-image {
            max-width: 100%;
            height: auto;
            max-height: 50vh;
            margin-bottom: 2rem;
            border-radius: 8px;
           /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s;
            font-weight: 500;
        }

        .btn:hover {
            background-color: #2980b9;
        }

        /* News Section */
        #news {
            padding: 5rem 2rem;
            background-color: white;
            max-width: 1200px;
            margin: 0 auto;
        }

        #news h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
        }

        .news-card {
            background-color: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .news-card:hover {
            transform: translateY(-5px);
        }

        .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .news-content {
            padding: 1.5rem;
        }

        .news-content h3 {
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .news-date {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .news-content p {
            margin-bottom: 1rem;
            color: #555;
        }

        .read-more {
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
        }

        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 2rem;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 1.5rem 0;
            }

            .menu-toggle {
                display: block;
            }

            .product-content h2 {
                font-size: 2rem;
            }

            .product-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem;
            }

            .product-section {
                padding: 6rem 1rem;
            }

            .product-content h2 {
                font-size: 1.8rem;
            }

            #news {
                padding: 3rem 1rem;
            }
        }