/* Hide non-essential elements */
@media print{

    nav, footer, #banner {
        display: none;
      }
      
    /* Make sure the background color is white */
    body {
        background-color: #fff;
    }
    
    /* Adjust the size of the wrapper to fit the page */
    #wrapper {
        max-width: 100%;
    }
    
    /* Set the width of the repair service containers to 100% */
    .repair-service {
        width: 100%;
        margin: 0;
    }
    
    /* Remove the box shadow and border radius from repair service containers */
    .repair-service {
        box-shadow: none;
        border-radius: 0;
    }
    
    /* Adjust the size of the repair service images */
    .repair-service-image img {
        width: 30px;
        height: 30px;
    }
    
    /* Adjust the font size and color of links */
    nav li a {
        font-size: 14px;
        color: #000;
        text-decoration: none;
    }
    
    /* Hide the logo */
    #logo {
        display: none;
    }

    .founder-pic{
        display: none;
    }

}

  