/* General Page Layout */
.setup-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.5em;
    color: #333;
}

.setup-instructions, .download-section, .warning, .useful-services {
    margin-bottom: 30px;
}

h2, h3 {
    font-size: 1.8em;
    color: #333;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
}

strong {
    font-weight: bold;
}

/* Button Styling */

.download-btn-link {
    text-decoration: none;  /* Remove underline from link */
}

.download-btn {
    padding: 15px 30px;
    background-color: #f7362f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.download-btn:hover {
    background-color: #f31a13;
}

.setup-warning-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.download-btn-epson{
    padding: 15px 30px;
    background-color: #0068AC;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.download-btn-epson:hover {
    background-color: #004b7e;
}

.download-btn-brother{
    padding: 15px 30px;
    background-color: #0d2ea0;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.download-btn-brother:hover {
    background-color: #0f35bd;
}

.download-btn-hp{
    padding: 15px 30px;
    background-color: #004fda;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.download-btn-hp:hover {
    background-color: #0066b4;
}

/* Links */
.link {
    color: #1e90ff;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Highlight Text */
.highlight-text {
    background-color: #ffeb3b;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

/* Useful Printer Services */
.useful-services ul {
    list-style-type: none;
    padding-left: 0;
}

.useful-services ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Footer Note */
.footer-note {
    text-align: center;
    font-size: 0.9em;
    color: #888;
    margin-top: 40px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .setup-container {
        padding: 10px;
    }

    .header h1 {
        font-size: 2em;
    }

    .setup-instructions, .download-section, .warning, .useful-services {
        margin-bottom: 20px;
    }

    .download-btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    h2, h3 {
        font-size: 1.5em;
    }

    p {
        font-size: 1.1em;
    }
}

@media screen and (min-width: 1200px) {
    .setup-container {
        max-width: 1000px;  /* Center the content with appropriate width */
    }

    .header h1 {
        font-size: 2.8em;
    }

    h2, h3 {
        font-size: 2em;
    }

    p {
        font-size: 1.3em;
    }

    .download-btn {
        padding: 18px 35px;
        font-size: 1.3em;
    }
}

/* Medium screens (Tablets & Small Desktops) */
@media screen and (max-width: 1199px) and (min-width: 992px) {
    .setup-container {
        padding: 15px;
    }

    .header h1 {
        font-size: 2.3em;
    }

    h2, h3 {
        font-size: 1.7em;
    }

    p {
        font-size: 1.2em;
    }

    .download-btn {
        padding: 15px 30px;
        font-size: 1.2em;
    }
}

/* Small screens (Mobile/Tablets) */
@media screen and (max-width: 768px) {
    .setup-container {
        padding: 10px;
    }

    .header h1 {
        font-size: 2em;
    }

    .setup-instructions, .download-section, .warning, .useful-services {
        margin-bottom: 20px;
    }

    h2, h3 {
        font-size: 1.5em;
    }

    p {
        font-size: 1.1em;
    }

    .download-btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .setup-warning-image {
        width: 100%;  /* Ensures the image scales to the full width on smaller screens */
    }

    .useful-services ul li {
        font-size: 1.1em;
    }
}

/* Extra Small screens (Mobile devices in portrait mode) */
@media screen and (max-width: 480px) {
    .setup-container {
        padding: 5px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .setup-instructions, .download-section, .warning, .useful-services {
        margin-bottom: 15px;
    }

    h2, h3 {
        font-size: 1.4em;
    }

    p {
        font-size: 1em;
    }

    .download-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 1em;
    }

    .setup-warning-image {
        width: 100%;  /* Ensures the image scales well for smaller screens */
    }

    .footer-note {
        font-size: 0.8em;
    }
}