 :root {
            --primary-color: #FF8C42;
            --primary-dark: #E67A35;
            --secondary-color: #333333;
            --secondary-light: #555555;
            --accent-color: #FFE8D9;
            --light-color: #F9F9F9;
            --white: #FFFFFF;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light-color);
            display: flex;
            justify-content: center;
            padding: 20px 0;
            color: var(--secondary-color);
            line-height: 1.6;
        }
        
        .page-container {
            width: 800px;
            max-width: 100%;
            background: var(--white);
            box-shadow: var(--shadow);
            border-radius: 12px;
            overflow: hidden;
        }
        
        /* Header Styles */
        .header-main {
            background: linear-gradient(to right, var(--secondary-color) 70%, var(--primary-color));
            color: var(--white);
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .brand-logo {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-color);
        }
        
        .brand-tagline {
            font-style: italic;
            font-size: 14px;
            opacity: 0.9;
        }
        
        .nav-main {
            display: flex;
            gap: 20px;
        }
        
        .nav-link {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        /* Hero Section */
        .hero-banner {
            position: relative;
            height: 380px;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1483985988355-763728e1935b?ixlib=rb-4.0.3') center/cover;
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 30px;
        }
        
        .hero-title {
            font-size: 42px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hero-text {
            font-size: 18px;
            max-width: 600px;
            margin-bottom: 25px;
        }
        
        /* Button Styles */
        .btn-primary {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 16px;
            letter-spacing: 0.5px;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 122, 53, 0.2);
        }
        
        .btn-secondary {
            display: inline-block;
            background-color: transparent;
            color: var(--white);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            transition: var(--transition);
            border: 2px solid var(--white);
            margin-left: 15px;
        }
        
        .btn-secondary:hover {
            background-color: var(--white);
            color: var(--secondary-color);
        }
        
        /* Section Styles */
        .section-main {
            padding: 50px 30px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--secondary-color);
            position: relative;
            font-size: 28px;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .product-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.15);
        }
        
        .product-image {
            height: 220px;
            background-color: var(--accent-color);
            background-position: center;
            background-size: cover;
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-title {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .product-price {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .product-description {
            color: var(--secondary-light);
            margin-bottom: 20px;
            font-size: 15px;
        }
        
        .product-features {
            margin-top: 15px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .feature-icon {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 14px;
        }
        
        /* Features Section */
        .features-section {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 60px 30px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: scale(1.03);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .feature-icon-main {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .feature-title {
            margin-bottom: 15px;
            font-size: 20px;
            font-weight: 600;
        }
        
        /* Testimonials */
        .testimonials-section {
            background-color: var(--accent-color);
            padding: 60px 30px;
        }
        
        .testimonial {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 20px 0;
            position: relative;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        .testimonial-rating {
            color: var(--primary-color);
            margin-top: 5px;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 60px 30px;
            text-align: center;
            background-color: var(--white);
        }
        
        .contact-text {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 18px;
        }
        
        /* Footer */
        .footer-main {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 40px 30px 20px;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .footer-link {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-link:hover {
            color: var(--primary-color);
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 25px 0;
        }
        
        .social-icon {
            color: var(--white);
            font-size: 20px;
            transition: var(--transition);
        }
        
        .social-icon:hover {
            color: var(--primary-color);
        }
        
        .copyright {
            font-size: 14px;
            opacity: 0.8;
            margin-top: 20px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .products-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .header-main {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .nav-main {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .hero-banner {
                height: auto;
                padding: 50px 20px;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .btn-container {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-secondary {
                margin-left: 0;
            }
        }