﻿        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
 
        body {
            line-height: 1.6;
            color: #333;
        }
 
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #2c3e50, #4ca1af);
            color: white;
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
 
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
 
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            letter-spacing: 1px;
        }
 
        nav ul {
            display: flex;
            list-style: none;
        }
 
        nav ul li {
            margin-left: 2rem;
        }
 
        nav ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
 
        nav ul li a:hover {
            color: #f1c40f;
        }
 
        /* Hero Section */
        .hero {
            background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }
 
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
        }
 
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 2rem;
        }
 
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
 
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
 
        .btn {
            display: inline-block;
            background: #f1c40f;
            color: #333;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s;
        }
 
        .btn:hover {
            background: #e6b000;
            transform: translateY(-2px);
        }
 
        /* Products Section */
        .products {
            padding: 4rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
 
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: #2c3e50;
        }
 
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
 
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
 
        .product-card:hover {
            transform: translateY(-10px);
        }
 
        .product-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
 
        .product-info {
            padding: 1.5rem;
        }
 
        .product-info h3 {
            margin-bottom: 0.8rem;
            color: #2c3e50;
        }
 
        .product-info p {
            color: #7f8c8d;
            margin-bottom: 1.2rem;
        }
 
        /* News Section */
        .news {
            padding: 4rem 5%;
            background: #f9f9f9;
            max-width: 100%;
            margin: 0 auto;
        }
 
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
 
        .news-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
 
        .news-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
 
        .news-info {
            padding: 1.5rem;
        }
 
        .news-info h3 {
            margin-bottom: 0.1rem;
            color: #2c3e50;
        }
 
        .news-info .date {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
            display: block;
        }
 
        .news-info p {
            color: #7f8c8d;
            margin-bottom: 1.2rem;
        }
 
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 5% 1rem;
        }
 
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
 
        .footer-section h3 {
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
 
        .footer-section ul {
            list-style: none;
        }
 
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
 
        .footer-section ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
 
        .footer-section ul li a:hover {
            color: white;
        }
 
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
 
        .social-links a {
            color: white;
            font-size: 1.2rem;
        }
 
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }
 
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
 
            nav ul {
                margin-top: 1rem;
            }
 
            .hero h1 {
                font-size: 2rem;
            }
        }