body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}
/*  Navbar styles */
.navbar {
    background-color: #f8f9fa; /* Light grey background */
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-left {
    display: flex;
    align-items: center;
}
.banner-heading{
  /* border: 1px solid black; */
}
.navbar-logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.navbar-logo img {
    height: 70px; /* Adjust as needed */
    margin-right: 5px;
    /* border: 1px solid black; */
}

.navbar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.navbar-links li {
    margin-left: 15px;
}
.contact2 {
color: #007bff;

}

.navbar-links a {
    text-decoration: none;
    color: #333; /* Dark grey text */
    font-weight: bold;
}

.navbar-contact {
    color: #007bff; /* Blue color */
    font-weight: bold;
}

.menu-toggle {
    display: none; /* Initially hide the hamburger menu */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start; /* Align items to the left in column layout */
    }

    .navbar-left {
        margin-bottom: 10px;
        width: 100%;
        justify-content: space-between; /* Space out logo and toggle button */
    }

    .navbar-links {
        flex-direction: column;
        width: 100%;
        display: none; /* Initially hide the links in responsive view */
    }

    .navbar-links li {
        margin: 10px 0;
        text-align: left; /* Align links to the left */
    }

    .navbar-contact {
        margin-top: 10px;
    }

    .menu-toggle {
        display: block; /* Show the hamburger menu */
        cursor: pointer;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px 0;
        display: block;
    }

    .navbar-links.open {
        display: flex; /* Use flex to arrange in a column */
        flex-direction: column; /* Ensure vertical stacking */
    }
}

/* Navbar css ends */

/* banner css start */
.banner-container {
    background-image: url('./Images/printer-suppot.jpg');
    height: 600px; /* Initial height for larger screens */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    /
}

.banner-text {
    color: white;
    padding: 20px;
    /* border: 1px solid black; /* Optional border for testing layout */
   
    border-radius: 8px; /* Optional rounded corners for the text container */
}

.banner-text h1 {
    font-size: 2em; /* Slightly larger for impact */
    margin-bottom: 10px;
    font-weight: bold;
}

.banner-text h2 {
    font-size: 1.5em; /* Slightly smaller than the main heading */
    margin-bottom: 10px;
    font-weight: bold;
}

.banner-text button {
    font-size: 1em; /* More readable button text */
    margin-top: 20px; /* Add some space above the button */
    font-weight: bold;
    background-color: #007bff;
    color: #fff;
    border-radius: 30px;
    padding: 12px 25px; /* Slightly larger padding */
    border: none;
    cursor: pointer; /* Add a pointer on hover */
}

.banner-text p {
    font-size: 1.2em;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .banner-container {
        height: auto; /* Adjust height automatically */
        min-height: 300px; /* Set a minimum height for content visibility */
        padding: 20px; /* Add some padding around the content */
    }

    .banner-text {
        /* display: block; /* Ensure text is visible */
        width: 90%; /* Adjust width of the text container */
        margin: 20px auto; /* Center the text container */
        padding: 15px; /* Adjust padding for smaller container */
    }

    .banner-text h1 {
        font-size: 1.7em; /* Adjust heading size */
    }

    .banner-text h2 {
        font-size: 1.3em; /* Adjust sub-heading size */
    }

    .banner-text button {
        font-size: 0.9em; /* Adjust button text size */
        padding: 10px 20px; /* Adjust button padding */
    }
}

/* Further adjustments for even smaller screens */
@media (max-width: 480px) {
    .banner-text h1 {
        font-size: 1.5em;
    }

    .banner-text h2 {
        font-size: 1.1em;
    }

    .banner-text button {
        font-size: 0.8em;
    }
}
/* banner css ends */



/* image content css starts */

.container, .container-header, .problems-container, .content-below {
    
    margin: 0px 100px;
    background-color: #fff;
    border-radius: 8px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    padding: 20px;
}
.PrinterSupport{
    text-decoration: none;
    font-size: 1em;
}
.PrinterSupport:hover{
    color: bisque;
}
/* Section One */
.section-one .container {
    display: flex;
    overflow: hidden;
}

.section-one .image-section {
    flex: 0 0 40%;
    padding-right: 20px;
}

.section-one .image-section img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.section-one .text-section {
    flex: 1;
}

.section-one .text-section h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #0d0d0d;
}
.section-one .text-section h2 {
    color: #0d0d0d;
    font-size:1.4em;
}
.section-one .text-section p{
    font-size: 0.9em;
}

.section-one .content-below {
    margin-top: 20px;
}
.PrinterSetup{
    text-decoration: none;
}

/* Section Two */
.section-two .top-header {
    text-align: center;
    padding: 10px 0;
}

.section-two .call-quote {
    color: #555;
    font-size: 0.9em;
}

.section-two .hero-section {
    padding: 30px 0;
    text-align: center;
}

.section-two .hero-section h1 {
    font-size: 2em;
    color: #222;
    margin-bottom: 15px;
}

.section-two .hero-section p {
    color: #555;
    margin-bottom: 10px;
   
}

/* Section Three */
.section-three .problems-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.section-three .problem-list-area {
    flex: 1;
}

.section-three .section-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.section-three .issue-list {
    list-style-type: disc;
    padding-left: 20px;
}

.section-three .list-item {
    margin-bottom: 8px;
}

.section-three .image-area {
    flex: 1;
    text-align: center;
}

.section-three .image-wrapper {
    max-width: 100%;
}

.section-three .image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container, .container-header, .problems-container, .content-below {
        margin: 15px;
        padding: 15px;
        flex-direction: column; /* For single column layout on small screens */
    }

    .section-one .image-section {
        padding-right: 0;
        margin-bottom: 15px;
    }

    .section-one .text-section h1 {
        font-size: 1.5em;
    }

    .section-two .hero-section h1 {
        font-size: 1.7em;
    }

    .section-three .problems-container {
        flex-direction: column;
    }

    .section-three .image-area {
        margin-top: 20px;
    }
}

.container-2 {
    
    margin: 0 100px;
    padding: 0px 20px;
    /* background-color: #fff; */
    border-radius: 8px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    margin-bottom: 20px;
}

h1, h2 {
    color: #222;
    margin-bottom: 0px;
    text-align: left;
}

h1 {
    font-size: 2.5em;
    text-align: left;
}

h2 {
    font-size: 2em;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 0px;
}

ul li strong {
    font-weight: bold;
    color: #555;
}

.services-section ul li {
    padding: 15px  0px;
    /* border: 1px solid #eee; */
    border-radius: 4px;
    
}

.dial-section ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

.dial-section ul li a {
    flex-direction: column;
    padding: 0px 0px;
    color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    /* transition: background-color 0.3s ease; */
}

.dial-section ul li a:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-2 {
        padding: 20px;
        margin-bottom: 15px;
        margin: 0px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.7em;
    }

    .dial-section ul {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .dial-section ul li a {
        width: 100%;
        text-align: center;
    }
}


/*________________________---_______*/
.top-bar {
    margin: 0 100px;
    border-bottom: 2px solid #eee;
    padding: 10px 20px;
    text-align: left;
    font-size: 0.9em;
    color: #555;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .top-bar {
        margin: 0 20px; /* Reduce horizontal margin */
        padding: 8px 15px; /* Adjust padding */
        font-size: 0.85em; /* Slightly smaller font size */
        text-align: center; /* Center text on smaller screens (optional) */
    }
}

/* Further adjustments for even smaller screens */
@media (max-width: 480px) {
    .top-bar {
        margin: 0 10px; /* Further reduce margin */
        padding: 6px 10px; /* Adjust padding */
        font-size: 0.8em; /* Even smaller font size */
    }
}

/*****************************/
.notification-bar {
    text-align: center;
    padding: 100px 20px;
   
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column; /* Stack message and button on smaller screens */
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between message and button */
}

.announcement-text {
    font-size: 1em;
    color: #333;
    margin: 0;
}

.phone-action {
    background-color: #00a9e0; /* Blue call button color */
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.phone-action:hover {
    background-color: #008ac5; /* Darker blue on hover */
}

.phone-action i {
    font-size: 1.2em;
}

.agent-avatar {
    width: 30px; /* Adjust size as needed */
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #fff;
}

.action-text {
    /* Styles for the "CLICK TO TALK" text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notification-bar {
        padding: 12px 15px;
        gap: 8px;
    }

    .announcement-text {
        font-size: 0.9em;
    }

    .phone-action {
        padding: 8px 15px;
        font-size: 0.85em;
        gap: 8px;
    }

    .phone-action i {
        font-size: 1em;
    }

    .agent-avatar {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .notification-bar {
        padding: 10px 10px;
        gap: 6px;
    }

    .announcement-text {
        font-size: 0.8em;
    }

    .phone-action {
        padding: 6px 12px;
        font-size: 0.8em;
        gap: 6px;
    }

    .phone-action i {
        font-size: 0.9em;
    }

    .agent-avatar {
        width: 20px;
        height: 20px;
    }
}
/*****************************/


/*-------------------------------------------*/

.page-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.site-footer {
    background-color: #333; /* Dark background color */
    color: #eee; /* Light text color */
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap; /* Allows sections to wrap on smaller screens */
    justify-content: space-around; /* Distribute sections evenly */
    align-items: flex-start; /* Align items to the top */
    gap: 20px; /* Adds space between footer columns */
}

.footer-column {
    flex: 1 1 300px; /* Minimum width for each section */
    margin-bottom: 0; /* Removed redundant margin */
    padding: 0 15px;
}

.column-heading {
    color: #fff;
    font-size: 1.1em; /* Slightly reduced for better readability */
    margin-bottom: 15px;
    border-bottom: 1px solid #555;
    padding-bottom: 8px; /* Increased padding for visual balance */
}

.about-us-text {
    font-size: 0.9em;
    line-height: 1.7; /* Slightly reduced for better flow */
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px; /* Increased spacing */
    font-size: 0.9em;
}

.contact-icon {
    margin-right: 12px; /* Increased spacing */
    color: #ddd;
    width: 18px; /* Slightly larger icon */
    height: 18px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    display: block; /* Ensures SVG takes up the full container */
}

.social-links {
    margin-top: 25px; /* Increased spacing */
    display: flex;
    gap: 10px; /* Adds space between social buttons */
}

.social-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px; /* Slightly larger buttons */
    height: 35px; /* Slightly larger buttons */
    border-radius: 50%;
    background-color: #555;
    color: #eee;
    text-decoration: none;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.social-button:hover {
    background-color: #777; /* Darker on hover */
}

.social-button svg {
    width: 18px; /* Slightly larger icons */
    height: 18px;
}

.partner-link {
    font-size: 0.9em;
    margin-top: 20px; /* Increased spacing */
}

.partner-link a {
    color: #007bff; /* Example link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.partner-link a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Increased spacing */
    font-size: 0.9em;
}

.list-arrow {
    margin-right: 12px; /* Increased spacing */
    color: #007bff; /* Example primary color */
    width: 18px; /* Slightly larger arrow */
    height: 18px;
}

.list-arrow svg {
    width: 100%;
    height: 100%;
    display: block; /* Ensures SVG takes up the full container */
}
.contact-item  a {
    text-decoration: none;
    color: #fff;
}
 .support-list .support-item  a {
    text-decoration: none;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px; /* Adjust padding for smaller screens */
        gap: 30px; /* Increased gap in column direction */
    }

    .footer-column {
        width: 90%; /* Increased width on smaller screens */
        margin-bottom: 0; /* Reset margin */
        padding: 0; /* Reset padding */
    }

    .column-heading {
        font-size: 1.1em; /* Maintain heading size */
        margin-bottom: 10px; /* Adjust spacing */
        padding-bottom: 6px; /* Adjust padding */
        border-bottom: 1px solid #555; /* Keep the border */
    }

    .contact-us .contact-list,
    .printer-support .support-list {
        text-align: left;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px; /* Adjust spacing */
    }

    .social-button {
        width: 30px; /* Slightly smaller on mobile */
        height: 30px; /* Slightly smaller on mobile */
    }

    .social-button svg {
        width: 16px; /* Adjust icon size */
        height: 16px; /* Adjust icon size */
    }

    .partner-link {
        margin-top: 15px; /* Adjust spacing */
    }
}

@media (max-width: 480px) {
    .footer-column {
        width: 100%; /* Full width on very small screens */
    }
}

/*--------------------------------------------*/

/*--------------------------------------------*/
#open-support-button {
    background-color: #4CAF50; /* Green button */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-bottom: 15px; /* Adjust spacing for smaller screens */
    float: right;
    position: fixed; /* Keep button in viewport on scroll */
    bottom: 0%; /* Position from the bottom */
    right: 20px; /* Position from the right */
    z-index: 1000; /* Ensure it's above other content */
}

#open-support-button:hover {
    background-color: #45a049;
}

.support-form {
    background-color: #3f51b5; /* Similar to the blue in the image */
    color: white;
    padding: 20px;
    border-radius: 5px;
    font-family: sans-serif;
    display: none; /* Initially hide the form */
    position: fixed; /* Keep form in viewport */
    top: 50%; /* Center vertically */
    left: 85%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for centering */
    width: 90%; /* Make form responsive width */
    max-width: 400px; /* Limit maximum width */
    z-index: 1001; /* Ensure it's above the button */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.title {
    font-size: 1.2em;
    font-weight: bold;
}

.minimize-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0;
}

.message {
    margin-bottom: 15px;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9em;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
    width: calc(100% - 12px); /* Adjust for padding */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 1em; /* Inherit or slightly increase font size for better readability */
}

.form-field textarea {
    resize: vertical;
    min-height: 100px; /* Adjust minimum height */
}

.submit-area {
    text-align: right;
}

.submit-button {
    background-color: #303f9f; /* Darker blue */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9em;
}

.submit-button:hover {
    background-color: #283593;
}

.zendesk-logo {
    color: #777;
    font-size: 0.8em;
    margin-top: 10px;
    text-align: center; /* Center the logo on smaller screens */
}

/* Overlay for the form background when visible */
.form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1000;
}

/* JavaScript to toggle the form and overlay */
#open-support-button.active + .support-form,
.support-form.active {
    display: block;
}

#open-support-button.active + .support-form + .form-overlay,
.support-form.active + .form-overlay {
    display: block;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    #open-support-button {
        font-size: 0.9em;
        padding: 8px 12px;
        bottom: 15px;
        right: 15px;
    }

    .support-form {
        padding: 15px;
        position: fixed;
        top:50%;
        left: 50%;
    }

    .title {
        font-size: 1.1em;
    }

    .minimize-button {
        font-size: 1.3em;
    }

    .form-field label {
        font-size: 0.85em;
    }

    .form-field input[type="text"],
    .form-field input[type="email"],
    .form-field input[type="tel"],
    .form-field textarea {
        font-size: 0.95em;
    }

    .submit-button {
        font-size: 0.85em;
        padding: 8px 12px;
    }
}
/***********************************************/
  #open-popup-button {
            background-color: #00a2e8;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1em;
            margin: 0px; /* Center the button horizontally */
            display: block; /* Make it a block-level element to apply margin auto */
            position: fixed;
            left:0%;
            bottom: 5%;
            z-index: 1000;
            
        }

        #open-popup-button:hover {
            background-color: #008ac5;
        }

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center; /* Center horizontally */
            align-items: center; /* Center vertically */
            z-index: 1000;
        }

        .popup-container {
            background-color: #00a2e8;
            color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            width: 90%;
            max-width: 400px;
            position: relative;
        }

        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .popup-title {
            font-size: 1.3em;
            font-weight: bold;
        }

        .close-button {
            background: none;
            border: none;
            color: white;
            font-size: 1.8em;
            cursor: pointer;
            padding: 0;
            line-height: 1;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 1em;
            font-weight: bold;
        }

        .form-group input[type="text"],
        .form-group input[type="tel"],
        .form-group select,
        .form-group textarea {
            width: calc(100% - 16px);
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 3px;
            box-sizing: border-box;
            font-size: 1em;
            color: #333;
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .form-group .required::after {
            content: " *";
            color: yellow;
        }

        .connect-button {
            background-color: #fff;
            color: #00a2e8;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1em;
            font-weight: bold;
            width: 100%;
        }

        .connect-button:hover {
            background-color: #e0e0e0;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 600px) {
             #open-popup-button {
                 position: fixed;
            left:0%;
            bottom: 20%;
            z-index: 1000;

             }
            .popup-container {
                padding: 15px;
                border-radius: 3px;
            }

            .popup-title {
                font-size: 1.1em;
                margin-bottom: 10px;
            }

            .close-button {
                font-size: 1.5em;
            }

            .form-group {
                margin-bottom: 12px;
            }

            .form-group label {
                font-size: 0.9em;
            }

            .form-group input[type="text"],
            .form-group input[type="tel"],
            .form-group select,
            .form-group textarea {
                padding: 8px;
                font-size: 0.95em;
            }

            .connect-button {
                padding: 10px 16px;
                font-size: 1em;
            }
        }

        @media (min-width: 601px) and (max-width: 992px) {
             #open-popup-button{
                 position: fixed;
            left:0%;
            bottom: 20%;
            z-index: 1000;
             }
            .popup-container {
                padding: 25px;
            }

            .popup-title {
                font-size: 1.2em;
            }

            .form-group label {
                font-size: 0.95em;
            }

            .form-group input[type="text"],
            .form-group input[type="tel"],
            .form-group select,
            .form-group textarea {
                padding: 9px;
            }

            .connect-button {
                padding: 11px 18px;
            }
        }
/*************************************************/
/* Base styles for all screen sizes */
div.printer-support-bar {
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
      position: fixed; /* Make it fixed to the viewport */
    top: 0; /* Stick it to the top */
    left: 0; /* Stick it to the left */
    width: 100%; /* Make it span the entire width */
    z-index: 1000;
}

p.printer-support-text {
    margin: 0;
    font-size: 0.9em; /* Slightly smaller base font size for better scaling */
}

span.flag-container {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

img.flag-icon {
    vertical-align: middle;
}

img.us-flag {
    width: 14px;
    height: 10px;
}

img.canada-flag {
    width: 14px;
    height: 10px;
    margin-left: 2px;
}

/* Media query for smaller screens (max-width: 600px) */
@media (max-width: 600px) {
    div.printer-support-bar {
        padding: 8px;
    }

    p.printer-support-text {
        font-size: 0.8em;
    }

    img.flag-icon {
        width: 12px !important;
        height: 9px !important;
    }
}

/* Media query for medium-sized screens (min-width: 601px and max-width: 992px) */
@media (min-width: 601px) and (max-width: 992px) {
    p.printer-support-text {
        font-size: 0.85em;
    }

    img.flag-icon {
        width: 13px !important;
        height: 9.5px !important;
    }
}

/* You can add more media queries for larger screens if needed */
@media (min-width: 993px) {
    p.printer-support-text {
        font-size: 1em; /* Revert to a slightly larger size for desktops */
    }

    img.flag-icon {
        width: 16px !important;
        height: 11px !important; /* Revert to original size for desktops */
    }
    img.canada-flag {
        margin-left: 3px; /* Adjust spacing on larger screens if desired */
    }
}
/********************************************/





