  <style>
        /* Global Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Top Bar Styles */
        .top-bar {
            background-color: #f8f9fa;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        
        .left-topbar ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 20px;
        }
        
        .left-topbar li {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .social-links {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }
        
        .social-links a {
            font-size: 1.2rem;
            text-decoration: none;
        }
        
        /* Header Styles */
        .main-header {
            padding: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            background-color: #ffffff;
            transition: all 0.3s ease;
        }
        
        .main-header.sticky {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .logo {
            padding: 10px 0;
        }
        
        .logo img {
            max-height: 60px;
        }
        
        #main-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: flex-end;
            gap: 25px;
        }
        
        #main-nav ul li {
            position: relative;
        }
        
        #main-nav ul li a {
            text-decoration: none;
            color: #e74c3c;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 20px 15px;
            display: block;
            position: relative;
            border-radius: 4px;
        }
        
        #main-nav ul li a:hover {
            color: #ffffff;
            background-color: #e74c3c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
        }
        
        #main-nav ul li ul {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 250px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
            display: block;
            flex-direction: column;
            gap: 0;
            border-radius: 4px;
            overflow: hidden;
        }
        
        #main-nav ul li:hover ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        #main-nav ul li ul li {
            width: 100%;
            position: relative;
        }
        
        #main-nav ul li ul li a {
            padding: 12px 20px;
            color: #2c3e50;
            border-bottom: 1px solid #f0f0f0;
            font-weight: 500;
            border-radius: 0;
            transform: none;
            box-shadow: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        #main-nav ul li ul li a:hover {
            background-color: #e74c3c;
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        
		.fe-hero {
    background-image: url('asset/img/foam.webp'); /* Update path */
    background-size: cover;       /* Ensures full coverage */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat; /* Prevents repeating */
    padding: 120px 0;             /* Space for hero height */
}

        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .btn-primary {
            background-color: #e74c3c;
            border-color: #e74c3c;
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #c0392b;
            border-color: #c0392b;
            transform: translateY(-2px);
        }
        
        /* Products Section */
        .products-section {
            
            background-color: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            color: #2c3e50;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Product Cards - Updated for 3 per row */
        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .product-image {
           height: 350px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-info h3 {
            color: #2c3e50;
            font-size: 1.3rem; /* Reduced font size */
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .product-info p {
            color: #7f8c8d;
            font-size: 0.9rem; /* Reduced font size */
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .btn-secondary {
            background-color: #e74c3c;
            border-color: #2c3e50;
            color: white;
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .btn-secondary:hover {
            background-color: #e74c3c;
            border-color: #e74c3c;
            transform: translateY(-2px);
            color: white;
        }
        
        /* Footer Styles */
        .main-footer {
            background-color: #ffffff;
            color: #2c3e50;
            padding: 40px 0 0;
            border-top: 1px solid #e0e0e0;
        }
        
        .footer-maps {
            background-color: #ffffff;
            padding: 40px 0;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .maps-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .maps-info {
            flex: 1;
            min-width: 300px;
        }
        
        .maps-info h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .maps-info p {
            color: #7f8c8d;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .address-info {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }
        
        .address-info h4 {
            color: #e74c3c;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .address-info p {
            margin-bottom: 8px;
            color: #2c3e50;
        }
        
        .google-map {
            flex: 1;
            min-width: 300px;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: 1px solid #e0e0e0;
        }
        
        .google-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .footer-bottom {
            background-color: #ffffff;
            color: #7f8c8d;
            padding: 30px 0;
            border-top: 1px solid #e0e0e0;
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright {
            flex: 1;
            min-width: 300px;
        }
        
        .copyright p {
            margin: 0;
            font-size: 0.9rem;
        }
        
        .footer-contact-info {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #2c3e50;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .footer-contact-item:hover {
            color: #e74c3c;
            text-decoration: none;
        }
        
        .footer-contact-item i {
            font-size: 1rem;
            color: #e74c3c;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            #main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            
            #main-nav ul li a {
                padding: 12px 0;
                border-bottom: 1px solid #e0e0e0;
                border-radius: 0;
            }
            
            #main-nav ul li ul {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                width: 100%;
            }
            
            #main-nav ul li:hover ul {
                display: block;
            }
            
            .maps-container {
                flex-direction: column;
            }
            
            .google-map {
                width: 100%;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-contact-info {
                justify-content: center;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
 