
 
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        header {
            background: #0b3d91;
            color: white;
            text-align: center;
            padding: 50px 20px;
        }

        header h1 {
            margin: 0;
            font-size: 32px;
        }

        header p {
            margin-top: 10px;
            font-size: 18px;
        }

        /* Exhibition Layout */
        .exhibition-layout {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 50px;
            padding: 60px 0;
        }

        /* Left Content */
        .exhibition-content {
            flex: 1.3;
        }

        .exhibition-content h2 {
            color: #0b3d91;
            margin-bottom: 20px;
        }

        .exhibition-content h3 {
            margin-top: 25px;
            color: #222;
        }

        .exhibition-content ul {
            padding-left: 20px;
        }

        .product-images {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .product-images img {
            width: 60%;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }

        .product-name {
            margin-top: 10px;
            font-weight: bold;
            font-size: 15px;
       }

        .contact {
            background: #f4f4f4;
            padding: 40px 0;
        }

        .contact h2 {
            color: #0b3d91;
        }

        .contact a {
    color: #0077cc;
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
}
        footer {
            background: #222;
            color: white;
            text-align: center;
            padding: 20px;
        }

        @media (max-width: 768px) {
            .exhibition-layout {
                flex-direction: column;
            }
        }

    