body {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 200px;
    padding-right: 200px;
    font-family: Arial;
    overflow-x: hidden !important;
}
.qInput {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 5px;
    width: 400px !important;
    font-family: Arial;
}
select {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 5px;
    width: 415px !important;
    font-family: Arial;
}
.btn {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 5px;
    width: 415px;
    font-family: Arial;
}
.qButton {
    width: 250px;
    height: 35px;
    font-size: 18px;
}
img {
    width: 200px;
}
h1, h2 {
    color: black;
}
.qTitle {
    font-size: 18px;
    color: black;
}
.row {
    display: flex;
    justify-content: space-between; /* Adjusts the spacing between columns */
}
.column {
    padding-right: 20px; /* Adjust padding as needed */
    width: 100%;
}

/* Specific class or inline style for the logo column */
.logo-column {
    width: 25%;
}

/* Specific class for the links column */
.links-column {
    width: 75%;
}

.nav-row {
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
}


.search {
    width: 400px;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
th, td {
    padding: 8px;
    text-align: left;
}

.qaButton {
    display: inline-block;
    padding: 20px 50px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #002c8b;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    margin-right: 20px;
    margin-top: 10px;
    width: 175px;
}

.qaButtonQuote {
    display: inline-block;
    padding: 20px 50px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #ff0000;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    margin-right: 20px;
    margin-top: 10px;
    width: 175px;
}

.qaButtonSm {
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #002c8b;
    font-weight: 500;
    padding: 7px;
    border-radius: 5px;
}

.qaButtonSmRed {
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #ff0000;
    font-weight: 500;
    padding: 7px;
    border-radius: 5px;
}

.emailContent {
    width: 100%;
    font-size: 18px;
    font-family: Arial;
}

/* Mobile Styles */
@media screen and (max-width: 1024px) {
    body {
        padding-left: 20px;
        padding-right: 20px;
    }
    .qButton {
        width: 100%; /* Full width for smaller screens */
    }
    img {
        width: 200px;
    }
    .row {
        flex-direction: column !important;
    }
    .column {
        padding-right: 0; /* Remove right padding for columns */
    }
    .nav-row {
        align-items: center;
    }
    /* Specific class or inline style for the logo column */
    .column, .links-column, .logo-column {
        width: 100%;
    }

    /* Specific class for the links column */
    .links-column {
        width: 100%;
    }
    table, th, td {
        font-size: 12px;
    }
    .qInput {
        width: 335px !important;
    }
    select {
        width: 350px !important;
    }
    .btn {
        width: 350px !important;
    }
}