        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .header-top {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-info span {
            margin-right: 20px;
        }

        .header-social a {
            color: white;
            text-decoration: none;
            margin-left: 10px;
            font-size: 1.1rem;
            transition: opacity 0.3s ease;
        }

        .header-social a:hover {
            opacity: 0.8;
        }

        .header-main {
            background: white;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .main-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .main-logo:hover {
            color: #764ba2;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 30px;
        }

        .nav-menu a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: #667eea;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: #f8f9fa;
            border-radius: 25px;
            padding: 8px 15px;
            transition: background 0.3s ease;
        }

        .search-box:focus-within {
            background: #e9ecef;
        }

        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            padding: 5px;
            width: 200px;
        }

        .search-box button {
            border: none;
            background: transparent;
            cursor: pointer;
            font-size: 1rem;
        }

        .cart-icon a {
            color: #333;
            text-decoration: none;
            font-size: 1.1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .cart-icon a:hover {
            color: #667eea;
        }

        .cart-count {
            background: #ff6b6b;
            color: white;
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 0.8rem;
            position: absolute;
            top: -8px;
            right: -10px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Main Content */
        .main-content {
            padding: 80px 0;
        }

        .section {
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 2.2rem;
            color: #2c5aa0;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .section-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .text-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }

        .text-content p {
            margin-bottom: 20px;
        }

        .product-showcase {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .product-item {
            text-align: center;
            padding: 20px;
            border: 2px solid #f0f0f0;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .product-item:hover {
            border-color: #2c5aa0;
            transform: translateY(-5px);
        }

        .product-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            display: block;
        }

        .product-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .product-price {
            color: #2c5aa0;
            font-weight: bold;
        }

        .btn {
            background: #2c5aa0;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: #1a365d;
            transform: translateY(-2px);
        }

        .feature-list {
            list-style: none;
            margin: 20px 0;
        }

        .feature-list li {
            padding: 5px 0;
            color: #555;
        }

        .feature-list li::before {
            content: "✓";
            color: #2c5aa0;
            font-weight: bold;
            margin-right: 10px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 20px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            text-align: center;
        }

        .stat-item {
            padding: 15px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #2c5aa0;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }

        /* Call to Action */
        .cta-section {
            background: #2c5aa0;
            color: white;
            padding: 60px 40px;
            border-radius: 10px;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-white {
            background: white;
            color: #2c5aa0;
        }

        .btn-white:hover {
            background: #f0f0f0;
            color: #1a365d;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section li {
            color: #bbb;
            margin-bottom: 10px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            text-align: center;
            color: #bbb;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .section-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .nav {
                flex-direction: column;
                gap: 15px;
            }

            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 15px;
            }

            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }
        }

                /* Footer Styles */
        .main-footer {
            background: #2c3e50;
            color: white;
            margin-top: 0;
        }

        .footer-main {
            padding: 60px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-section h3 {
            color: #ff6b6b;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .footer-section h4 {
            color: #ffa500;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .footer-section p {
            line-height: 1.6;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .footer-social a {
            color: white;
            text-decoration: none;
            font-size: 1.3rem;
            padding: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #ff6b6b;
            transform: translateY(-2px);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
            color: #ffa500;
            padding-left: 5px;
        }

        .contact-info p {
            margin-bottom: 10px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 15px;
            margin-bottom: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 5px 0 0 5px;
            outline: none;
        }

        .newsletter-form button {
            padding: 12px 20px;
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: linear-gradient(45deg, #ffa500, #ff6b6b);
        }

        .payment-methods {
            margin-top: 20px;
        }

        .payment-methods span {
            display: block;
            margin-bottom: 10px;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .payment-icons {
            font-size: 1.5rem;
        }

        .footer-bottom {
            background: #1a252f;
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-legal {
            display: flex;
            gap: 20px;
        }

        .footer-legal a {
            color: white;
            text-decoration: none;
            opacity: 0.7;
            font-size: 0.9rem;
            transition: opacity 0.3s ease;
        }

        .footer-legal a:hover {
            opacity: 1;
        }

        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            body {
                padding-top: 140px;
            }

            .header-top-content {
                flex-direction: column;
                gap: 10px;
            }

            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .nav-menu {
                flex-wrap: wrap;
                gap: 20px;
                justify-content: center;
            }

            .header-actions {
                flex-direction: column;
                gap: 15px;
            }

            .search-box input {
                width: 150px;
            }

            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .footer-legal {
                flex-direction: column;
                gap: 10px;
            }
            
            .contact-item {
                display: block;
                margin: 10px 0;
            }
        }
