 .under-construction {
            background: #f9f9f9;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 60px 0;
            text-align: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -15px;
            margin-left: -15px;
        }

        .col-sm-12 {
            position: relative;
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
        }

        .pq-construction-block {
            max-width: 700px;
            margin: 0 auto;
            padding: 50px 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }

        .pq-construction-block:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #ed3237;
        }

        .pq-construction-logo {
            margin-bottom: 30px;
        }

        .construction-logo {
            height: 100px;
            width: 100px;
            object-fit: contain;
        }

        h1 {
            font-size: 2.8rem;
            color: #333;
            margin-bottom: 30px;
            font-weight: 700;
            position: relative;
        }

        h1:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #ed3237;
        }

        /* Contact Information Styles */
        .pq-contact-info {
            margin: 40px auto;
            width: 100%;
        }

        .contact-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 20px;
        }

        .contact-address {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .contact-link {
            display: flex;
            align-items: center;
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-link:hover {
            color: #ed3237;
        }

        .contact-icon {
            color: #ed3237;
            font-size: 18px;
            margin-right: 10px;
        }

        .contact-text {
            font-size: 1.1rem;
        }

        /* Button Styles */
        .pq-btn-block {
            margin-top: 30px;
        }

        .pq-btn-container {
            display: inline-block;
        }

        .pq-button {
            text-decoration: none;
            display: inline-block;
        }

        .pq-button-flat {
            position: relative;
            overflow: hidden;
        }

        .pq-button-block {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            color: white;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .pq-button-text {
            margin-right: 10px;
            font-weight: 500;
        }

        .pq-svg-arrow {
            width: 24px;
            height: 12px;
            transition: transform 0.3s ease;
        }

        .pq-button:hover .pq-svg-arrow {
            transform: translateX(5px);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .pq-construction-block {
                padding: 40px 20px;
            }
            
            .contact-row {
                flex-direction: column;
                gap: 15px;
            }
            
            .contact-link {
                justify-content: center;
            }
            
            .contact-text {
                font-size: 1rem;
            }
        }