        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'IBM Plex Sans', 'Open Sans', 'Roboto Condensed', sans-serif; background-color: #ffffff; color: #333333; line-height: 1.6; }
        nav {
            background-color: #f8f9fa;
            border-bottom: 2px solid #dee2e6;
            padding: 10px 20px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 30px;
        }
        nav ul li a {
            color: #0056b3;
            text-decoration: none;
            font-weight: bold;
            font-size: 1em;
        }
        nav ul li a:hover {
            color: #003d80;
        }
        header {
            background-color: #e9ecef;
            padding: 60px 20px;
            text-align: center;
            border-bottom: 2px solid #dee2e6;
        }
        header h1 {
            font-size: 3em;
            margin-bottom: 10px;
            color: #0056b3;
        }
        header p {
            font-size: 1.2em;
            color: #666;
        }
        /*.hero {*/
        /*    position: relative;*/
        /*    background: url('https://via.placeholder.com/1600x600?text=Industrial+Image') no-repeat center center/cover;*/
        /*    height: 500px;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: center;*/
        /*    color: white;*/
        /*}*/
        /*.hero::before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    top: 0;*/
        /*    left: 0;*/
        /*    width: 100%;*/
        /*    height: 100%;*/
        /*    background: rgba(0, 0, 0, 0.4);*/
        /*    z-index: 1;*/
        /*}*/
        /*.hero h2 {*/
        /*    position: relative;*/
        /*    z-index: 2;*/
        /*    font-size: 2.5em;*/
        /*    background-color: rgba(0,0,0,0.6);*/
        /*    padding: 20px;*/
        /*    border-radius: 10px;*/
        /*}*/
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 40px 20px;
        }
        .section-title {
            text-align: center;
            font-size: 2em;
            margin-bottom: 40px;
            color: #0056b3;
        }
        .products {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }
        .product {
            background-color: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
            width: 350px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .product img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .product-content {
            padding: 20px;
        }
        .product-content h3 {
            margin-bottom: 10px;
            color: #0056b3;
        }
        .product-content p {
            font-size: 0.95em;
            margin-bottom: 15px;
            color: #555;
        }
        .specs {
            list-style: none;
            padding-left: 0;
        }
        .specs li {
            background: #e2e6ea;
            margin-bottom: 8px;
            padding: 8px;
            border-radius: 5px;
            color: #333;
        }
        .cta {
            text-align: center;
            margin: 60px 0;
        }
        .cta button {
            background-color: #0056b3;
            color: #fff;
            border: none;
            padding: 15px 30px;
            font-size: 1.2em;
            border-radius: 5px;
            cursor: pointer;
        }
        .cta button:hover {
            background-color: #003d80;
        }
        footer {
            background-color: #e9ecef;
            text-align: center;
            padding: 20px;
            color: #666;
        }
        
        /*body { font-family: 'IBM Plex Sans', 'Open Sans', 'Roboto Condensed', sans-serif; background-color: #ffffff; color: #333; margin: 0; padding: 0; }*/
        /*.container { max-width: 1200px; margin: auto; padding: 40px 20px; }*/
        .product-header { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; margin-bottom: 40px; }
        .product-header img { width: 100%; max-width: 400px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
        .product-info { flex: 1; }
        .product-info h1 { font-size: 2.5em; color: #0056b3; margin-bottom: 10px; }
        .product-info h2 { font-size: 1.5em; color: #333; margin-bottom: 20px; }
        .product-info p { font-size: 1em; color: #555; }
        table { width: 100%; border-collapse: collapse; margin-top: 40px; }
        th, td { border: 1px solid #ccc; padding: 12px; text-align: left; }
        th { background-color: #f2f2f2; }
        .cta { text-align: center; margin: 60px 0; }
        .cta h2 { font-size: 1.8em; color: #0056b3; margin-bottom: 20px; }
        .cta p { font-size: 1em; color: #555; margin-bottom: 20px; }
        .cta button { background-color: #0056b3; color: white; border: none; padding: 15px 30px; font-size: 1.2em; border-radius: 5px; cursor: pointer; }
        .cta button:hover { background-color: #003d80; }
        
        .hero {
            position: relative;
            height: 500px;
            background: url('/img/IMG_0604.jpeg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        .hero h2 {
            position: relative;
            z-index: 2;
            font-size: 2.5em;
            background-color: rgba(0,0,0,0.6);
            padding: 20px;
            border-radius: 10px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
        }