        .page-sections {
            padding: 100px 0 0;
            background-color: #c6e9e3;
        }

        header {
            position: absolute;
            top: 23px;
            left: 0;
            width: 100%;
            z-index: 99;
        }

        ul {
            list-style: none;
            margin-top: 20px;
        }

        .contact-head-info {
            text-align: right;
            margin-left: auto;
            margin-top: 5px;
        }

        /* Gallery Section Styling */
        .gallery-section {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 40px;
        }

        /* Individual Image Styling */
        .gallery-section .gallery-image {
            /*width: 23%;*/
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            border: 3px solid #ffffff;
        }

        .gallery-section .gallery-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Hover Effect */
        .gallery-section .gallery-image:hover {
            transform: scale(1.05);
        }

        .banner-content {
            padding-top: 50px;
        }

        /* Banner Background */
        .banner {
            background: url("https://sensations-group.com/demosensationsworldwide/wp-content/uploads/2024/06/Show-Page.jpg") no-repeat center center/cover;
            color: #ffffff;
            text-align: center;
            padding: 80px 20px;
            position: relative;
        }

        /* Overlay */
        .banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background-color: rgba(0, 0, 0, 0.6);*/
            z-index: 1;
        }

        /* Banner Content */
        .banner-content {
            position: relative;
            z-index: 2;
            /*max-width: 600px;*/
            margin: auto;
        }
        
        img.logo {
            border-radius: 75px;
        }
        
        .circle-logo {
            width: 150px; /* Adjust width as needed */
            height: 150px; /* Adjust height as needed */
            border-radius: 50%; /* Makes the container circular */
            background-color: white; /* Adds white background */
            padding: 10px; /* Adds spacing between image and circular background */
            border: 1px solid #ccc; /* Optional: Adds a subtle border */
            display: flex; /* Enables flexbox for centering */
            justify-content: center; /* Horizontally centers the content */
            align-items: center; /* Vertically centers the content */
            margin: 0 auto; /* Centers the circle container itself */
            box-sizing: border-box; /* Includes padding and border in the element's dimensions */
            }
            
        .circle-logo img {
            max-width: 100%; /* Ensures the image fits within the container */
            max-height: 100%; /* Ensures the image fits within the container */
            object-fit: contain; /* Ensures the logo fits perfectly without distortion */
            display: block; /* Removes inline spacing issues */
        }

        h1 {
            font-size: 40px;
            font-weight: bold;
            color: #ff8c00;
            margin: 20px 0px 18px 0px;
        }

        p.description {
            font-size: 19px;
            margin-bottom: 20px;
            color: #ffffff;
        }

        /* Event Details */
        .event-details {
            font-size: 17px;
            margin-bottom: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #ffffff;
        }

        .event-details .event-date,
        .event-details .event-location {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .event-details span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 700;
        }

        .event-details i {
            font-size: 20px;
        }

        /* General Section Styling */
        .exhibition-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 30px;
            background-color: #f7f7f7;
            position: relative;
        }

        /* Left Content Styling */
        .exhibition-content {
            width: 65%;
        }

        .exhibition-content h2 {
            font-size: 28px;
            color: #ff8c00;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .exhibition-content p {
            font-size: 16px;
            line-height: 1.6;
            /*color: #333;*/
            margin-bottom: 15px;
        }

        /* Style for the select dropdown to match input fields */
        .quotation-form select {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 18px; /* Same as input fields */
            font-size: 16px;
            transition: border-color 0.2s ease-in-out;
            background-color: #fff; /* White background to match input */
            appearance: none; /* Removes default dropdown arrow for custom styling */
        }
        
        /* Add focus effect to match input fields */
        .quotation-form select:focus {
            outline: none;
            border-color: #ff6600;
            box-shadow: 0 0 5px rgba(255, 102, 0, 0.2);
        }
        
        /* Optional: Style the dropdown arrow for a consistent look */
        .quotation-form select::after {
            content: "▼";
            position: absolute;
            right: 15px;
            pointer-events: none;
        }
        
        /* Add placeholder-like effect for the default option */
        .quotation-form select option[value=""][disabled] {
            color: #aaa;
        }
        
        /* Ensuring text alignment and readability */
        .quotation-form select {
            text-align-last: left; /* Align selected text to the left */
            color: #333; /* Consistent text color */
        }
        
        /* Bullet Points Styling within Exhibition Content */
        .exhibition-content .bullet-points {
            list-style-type: disc;
            padding-left: 35px;
            margin-top: 15px;
            margin-bottom: 20px;
        }

        .exhibition-content .bullet-points li {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        /* Right Form Styling */
        .quotation-form {
            width: 33%;
            background-color: #ffffff;
            color: #333;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .quotation-form h3 {
            font-size: 22px;
            color: #333;
            text-align: center;
            margin-bottom: 25px;
            font-weight: bold;
        }

        .quotation-form input[type="text"],
        .quotation-form input[type="email"],
        .quotation-form input[type="tel"],
        .quotation-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 18px;
            font-size: 16px;
            transition: border-color 0.2s ease-in-out;
        }

        .quotation-form input[type="text"]:focus,
        .quotation-form input[type="email"]:focus,
        .quotation-form input[type="tel"]:focus,
        .quotation-form textarea:focus {
            outline: none;
            border-color: #ff6600;
            box-shadow: 0 0 5px rgba(255, 102, 0, 0.2);
        }

        .quotation-form input::placeholder,
        .quotation-form textarea::placeholder {
            color: #aaa;
        }

        .quotation-form textarea {
            resize: vertical;
            height: 80px;
        }

        .quotation-form input[type="submit"] {
            background-color: #ff6600;
            color: #ffffff;
            font-weight: bold;
            padding: 12px;
            width: 100%;
            border: none;
            border-radius: 18px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }

        .quotation-form input[type="submit"]:hover {
            background-color: #e05c00;
        }

        /* Features Section Styling */
        .features-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            background-color: #595C5E;
            padding: 20px 40px;
            color: white;
            gap: 15px;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 23%;
            padding: 10px;
            position: relative;
            transition: background-color 0.3s ease;
        }

        .feature-item i {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .features-section a.feature-item {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-item h3 {
            font-size: 21px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .feature-item p {
            font-size: 17px;
            line-height: 2.0;
            font-weight: 600;
        }

        .feature-item:not(:last-child)::after {
            content: "";
            position: absolute;
            right: -10px;
            top: 10%;
            height: 80%;
            width: 1px;
            background-color: #ffffff;
            opacity: 0.6;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {

            .features-section {
                flex-wrap: wrap;
            }

            .feature-item {
                width: 48%;
            }
        }

        @media (max-width: 768px) {

            /* Mobile View */
            .gallery-section {
                flex-direction: column;
                align-items: center;
            }

            .features-section {
                /*flex-direction: column;*/
                gap: 20px;
            }

            .feature-item {
                width: 48%;
                margin-bottom: 15px;
            }

            .banner {
                padding: 60px 15px;
            }

            .banner-content h1 {
                font-size: 28px;
            }

            .banner-content p.description {
                font-size: 16px;
            }

            .quotation-form {
                width: 100%;
                padding: 20px;
            }

            .exhibition-section {
                flex-direction: column;
                padding: 20px;
            }

            .exhibition-content,
            .quotation-form {
                width: 100%;
            }

            .features-section {
                gap: 10px;
            }

            .feature-item:not(:last-child)::after {
                display: none;
            }
        }

        @media (max-width: 480px) {

            /* Small Mobile View */
            .gallery-section .gallery-image {
                width: 100%;
            }

            .feature-item h3 {
                font-size: 18px;
            }

            .feature-item i {
                font-size: 30px;
            }

            .banner-content h1 {
                font-size: 24px;
            }

            .banner-content p.description {
                font-size: 14px;
            }

            .exhibition-content .bullet-points {
                margin-bottom: 30px;
            }
        }