        /* Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            background-color: #f5f7fa;
            line-height: 1.6;
            padding-bottom: 60px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 50;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            height: 50px;
        }
        
        /* Desktop Navigation */
        .desktop-nav > ul {
            display: flex;
            gap: 20px;
            list-style: none;
        }
        
        .desktop-nav a {
            color: #2d3748;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }
        
        .desktop-nav a:hover {
            color: #3182ce;
        }
        
        /* Dropdown Menu Styles */
        .nav-item {
            position: relative;
        }
        
        .nav-item.has-children  > a::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 12px;
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s;
            z-index: 100;
            padding: 10px 0;
        }
        
        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu li {
            padding: 0;
        }
        
        .dropdown-menu a {
            padding: 8px 20px;
            display: block;
            white-space: nowrap;
        }
        
        .dropdown-menu a:hover {
            background-color: #f5f5f5;
        }
        
        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #2d3748;
            font-size: 24px;
            cursor: pointer;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 85%;
            max-width: 300px;
            height: 100vh;
            background-color: white;
            z-index: 100;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            padding: 80px 20px 20px;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-menu.active  {
            transform: translateX(0);
        }
        
        .mobile-nav {
            display: flex;
            flex-direction: column;
        }
        
        .mobile-nav-item {
            border-bottom: 1px solid #eee;
            position: relative;
        }
        
        .mobile-nav-item > a {
            padding: 15px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #2d3748;
            text-decoration: none;
        }
        
        .mobile-nav-item > a::after {
            content: "\f054";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 14px;
            transition: transform 0.3s;
        }
        
        .mobile-nav-item.active  > a::after {
            transform: rotate(90deg);
        }
        
        .mobile-subnav {
            padding-left: 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
			scrollbar-width: thin;
        }
        
        .mobile-nav-item.active  .mobile-subnav {
            max-height: 200px;
			overflow-y: auto;
			-webkit-overflow-scrolling: touch;
        }
        
        .mobile-subnav a {
            display: block;
            padding: 12px 0;
            color: #666;
            text-decoration: none;
        }
        
        /* Hero Slider */
        .hero-slider {
            height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease;
        }
        
        .hero-slide.active  {
            opacity: 1;
        }
       
        .hero-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
            z-index: 3;
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 30px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .cta-button {
            background-color: #3182ce;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #dd6b20;
        }
        
        .cta-button i {
            margin-right: 8px;
        }
        
        /* Section Styles */
        .section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 10px;
        }
        
        .title-line {
            width: 80px;
            height: 3px;
            background-color: #3182ce;
            margin: 0 auto 20px;
        }
        
        /* Utility Classes */
        .mt-4 {
            margin-top: 1.5rem;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Products */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .product-image {
            height: 250px;
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #ed8936;
            color: white;
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        .product-details {
            padding: 20px;
        }
        
        .product-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
        }
        
        .product-desc {
            color: #718096;
            margin-bottom: 20px;
        }
        
        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
			margin-top: 15px;
        }
        
        .product-price {
            color: #ed8936;
            font-weight: 700;
            font-size: 1.25rem;
        }
        .buy-button {
            background-color: #3182ce;
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
 
        .buy-button:hover {
            background-color: #2c5282;
            transform: translateY(-2px);
        }
   
        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 20px;
        }
        
        .about-text p {
            color: #718096;
            margin-bottom: 20px;
        }
        
        .learn-more {
            display: inline-block;
            background-color: #3182ce;
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .learn-more:hover {
            background-color: #2c5282;
        }
        
        /* News Section */
        .news-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .news-item {
            padding: 20px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .news-item h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 5px;
        }
        
        .news-date {
            color: #718096;
            margin-bottom: 10px;
            font-size: 0.875rem;
        }
        
        .news-item p {
            color: #718096;
        }
        
        .view-more {
            display: inline-block;
            border: 1px solid #3182ce;
            color: #3182ce;
            padding: 10px 30px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            margin-top: 30px;
            transition: all 0.3s;
        }
        
        .view-more:hover {
            background-color: #3182ce;
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: #126137;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-column li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-column i {
            margin-right: 10px;
            margin-top: 3px;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        
        .footer-bottom p,
        .footer-bottom a {
            color: rgba(255,255,255,0.7);
            font-size: 0.875rem;
        }
        
       
        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .overlay.active  {
            opacity: 1;
            visibility: visible;
        }
        
        /* Mobile Bottom Bar */
        .mobile-bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 90;
        }
        
        .mobile-bottom-bar a {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #718096;
            text-decoration: none;
            font-size: 0.75rem;
            flex: 1;
            text-align: center;
        }
        
        .mobile-bottom-bar i {
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-slider {
                height: 350px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
			
			.buy-button {
                padding: 6px 15px;
                font-size: 0.8rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .section {
                padding: 40px 0;
            }
        }
        
        @media (max-width: 576px) {
            .hero-slider {
                height: 350px;
            }
            
            .hero-title {
                font-size: 1.75rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .mobile-menu {
                width: 85%;
            }
            
            .product-image {
                height: 200px;
            }
            
            .product-name {
                font-size: 1.1rem;
            }
            
            .product-price {
                font-size: 1.1rem;
            }
            
            .buy-button {
                padding: 6px 15px;
            }
        }