
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
		
        
        /* Header */
        .header-top {
            background: linear-gradient(135deg, #942614 0%, #7a1f0f 100%);
            color: white;
            padding: 15px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: center;
            text-align: center;
        }
        
        .header-top h1 {
            font-size: 1.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .logo-top {
            max-width: 100px;
            height: auto;
        }
        
        .header-top .phone {
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: 0.5px;
			color: #fff;
        }
		
        .header-top .phone a {
			color: #fff;
			text-decoration: none;
		}	
		
		.header-top .phone a:hover {
		    font-weight: 900;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
		
		/* Divider */
		.divider {
            background: #000;
            color: white;
            padding: 15px 20px;
            align-items: center;
            text-align: center;
        }
		
		
        /* Hero Section */
        .hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            padding: 40px 20px;
            text-align: center;
            animation: fadeIn 0.8s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .hero h2 {
            font-size: 3rem;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .hero .subtitle {
            font-size: 1.6rem;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #8A2312, #d35400);
            color: white;
            padding: 18px 35px;
            font-size: 1.1rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
        }
        
        /* Section Styles */
        .section-intro {
            background: #f9f9f9;
            padding: 50px 20px;
            text-align: center;
        }
        
        .section-intro h2 {
            font-size: 2.2rem;
            color: #942614;
            margin-bottom: 20px;
            font-weight: 700;
        }
		
		.section-intro h3 {
            font-size: 1.4rem;
            color: #942614;
            margin-bottom: 0px;
            font-weight: 700;
        }
        
        .section-intro p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 20px;
            line-height: 1.8;
        }
        
        /* Benefits Grid */
		.benefits  {
		    padding: 50px 20px;
            text-align: center;
		
		}
		.benefits h2 {
            font-size: 2.2rem;
            color: #942614;
            margin-bottom: 20px;
            font-weight: 700;
        }
		
		
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 4px solid #942614;
        }
        
        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .benefit-card h3 {
            color: #942614;
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        
        .benefit-card p {
            color: #555;
            line-height: 1.7;
        }
        
        /* Products Section */
        .products-section {
            padding: 60px 20px;
            background: white;
        }
        
        .products-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #942614;
            margin-bottom: 45px;
            font-weight: 700;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .product-card {
            background: #f9f9f9;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .product-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #ddd, #bbb);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #666;
            overflow: hidden;
        }
        
        .product-content {
            padding: 25px;
        }
        
        .product-content h3 {
            color: #942614;
            font-size: 1.4rem;
            margin-bottom: 12px;
            font-weight: 700;
			text-align: center;
        }
        
        .product-content p {
            color: #555;
            margin-bottom: 12px;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        .product-features {
            list-style: none;
            padding: 0;
            margin: 15px 0;
        }
        
        .product-features li {
            padding: 6px 0;
            color: #666;
            padding-left: 20px;
            position: relative;
        }
        
        .product-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #942614;
            font-weight: bold;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #942614, #7a1f0f);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
		
		.cta-section h3 {
            font-size: 2.0rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }
		
		   .cta-section .phone a {
			color: #fff;
			text-decoration: none;
		}	
		
		   .cta-section .phone a:hover {
		    font-weight: 900;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
		
        
        .cta-button-white {
            background: white;
            color: #942614;
            padding: 16px 40px;
            font-size: 1.05rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button-white:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        /* Footer */
        footer {
            background: #000;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }
        
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .footer-logo {
            max-width: 120px;
            margin-bottom: 20px;
        }
        
        .footer-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .footer-content p {
            color: #ccc;
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        footer a {
            color: #e67e22;
            text-decoration: none;
        }
        
        footer a:hover {
            text-decoration: underline;
        }
        
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #942614;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            display: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        .scroll-top:hover {
            background: #7a1f0f;
            transform: translateY(-3px);
        }
        
        .scroll-top.show {
            display: block;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-top {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero .subtitle {
                font-size: 1.1rem;
            }
            
            .section-intro h2 {
                font-size: 1.8rem;
            }
            
            .products-section h2 {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }

        }
