    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }
        
        /* Top Social Bar */
        .social-bar {
            background: linear-gradient(135deg, #3d9b8f 0%, #4aa89c 100%);
            padding: 10px 0;
            text-align: right;
        }
        
        .social-bar .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .social-icons {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
        }
        
        .social-icons a {
            color: white;
            font-size: 20px;
            opacity: 0.9;
            transition: opacity 0.3s;
        }
        
        .social-icons a:hover {
            opacity: 1;
        }
        
        /* Navigation */
        nav {
            background: #1a3d47;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
        }
        
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
            list-style: none;
        }
        
        .nav-links a {
            color: #b8cfd4;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #4aa89c;
        }
        
        .phone-btn {
            background: transparent;
            border: 2px solid #4aa89c;
            color: #4aa89c;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .phone-btn:hover {
            background: #4aa89c;
            color: white;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(26, 61, 71, 0.9), rgba(26, 61, 71, 0.9)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231a3d47" width="1200" height="400"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 100px 0 80px;
            text-align: center;
            color: white;
        }
        
        .page-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 20px;
            color: #d4e0e3;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Product Categories */
        .product-categories {
            padding: 80px 0;
            background: white;
        }
        
        .product-categories .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .category-section {
            margin-bottom: 80px;
        }
        
        .category-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .category-header h2 {
            color: #1a3d47;
            font-size: 38px;
            margin-bottom: 15px;
        }
        
        .category-header p {
            color: #666;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            border-color: #4aa89c;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .product-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3d9b8f 0%, #4aa89c 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
            color: white;
        }
        
        .product-card h3 {
            color: #1a3d47;
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .product-list {
            list-style: none;
            margin-top: 15px;
        }
        
        .product-list li {
            color: #666;
            padding: 8px 0;
            padding-left: 20px;
            position: relative;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .product-list li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #4aa89c;
            font-weight: bold;
        }
        
        .product-card .badge {
            display: inline-block;
            background: #4aa89c;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
            margin-top: 10px;
        }
        
        /* Featured Products Section */
        .featured-products {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .featured-products .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .featured-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-left: 4px solid #4aa89c;
        }
        
        .featured-card h3 {
            color: #1a3d47;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .featured-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .featured-card ul {
            list-style: none;
        }
        
        .featured-card ul li {
            color: #666;
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
        }
        
        .featured-card ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4aa89c;
            font-weight: bold;
            font-size: 18px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1a3d47 0%, #2a5560 100%);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .cta-section h2 {
            color: white;
            font-size: 38px;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            color: #b8cfd4;
            font-size: 18px;
            margin-bottom: 40px;
        }
        
        .cta-btn {

            margin: 0 10px;
        }
        
        .cta-btn:hover {
            background: #3d9b8f;
            transform: translateY(-2px);
        }
        
        .cta-btn.secondary {
            background: transparent;
            border: 2px solid #4aa89c;
        }
        
        .cta-btn.secondary:hover {
            background: #4aa89c;
        }
        
        /* Footer */
        footer {
            background: #1a3d47;
            color: #b8cfd4;
            padding: 60px 0 30px;
        }
        
        footer .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #b8cfd4;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #4aa89c;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(184, 207, 212, 0.2);
        }
        
        @media (max-width: 1024px) {
            .products-grid,
            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .page-header h1 {
                font-size: 36px;
            }
            
            .products-grid,
            .featured-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
    </style>