        .product-container {
            max-width: 1200px;
            margin: 40px auto;
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .product-title {
            font-size: 1.6rem;
            font-weight: bold;
            color: #003f7d;
            border-left: 4px solid #005bac;
            padding-left: 10px;
            margin-bottom: 25px;
        }

        .product-flex {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .product-image {
            width: 380px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            cursor: pointer;
        }

        .product-description {
            flex: 1;
            font-size: 16px;
            line-height: 1.7;
        }

        /* Gallery Section */
        .gallery-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: #003f7d;
            border-left: 4px solid #005bac;
            padding-left: 10px;
            margin: 40px 0 20px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .gallery-grid img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .gallery-grid img:hover {
            transform: scale(1.03);
        }

        @media (max-width: 768px) {
            .product-flex {
                flex-direction: column;
                align-items: center;
            }

            .product-image {
                width: 100%;
                max-width: 380px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }