/*  
URI: https://www.elevationbackflow.com
Description: Designed by Elevation Backflow Testing and Repair, LLC
Author: Elevation Backflow Testing and Repair, LLC
Author URI: https://www.elevationbackflow.com
Copyright 2026, Elevation Backflow Testing and Repair, LLC. All rights reserved. 
*/

/* =========================================================================================
   MAIN-B.CSS - GLOBAL RULES + PAGE SPECIFIC
   2026 standards - Fluid, W3C compliant, consistent subsection headings
   ========================================================================================= */

/* ======================================================
   RESET & BASE STYLES
   ====================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 100%;
}
body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 0.93rem;
    line-height: 1.5;
    color: #000;
    background: #99abc1;
}

/* ======================================================
   SKIP LINK - ACCESSIBILITY
   ====================================================== */
.skip-link {
    position: absolute;
    top: -9999px;
    left: -9999px;
    z-index: 9999;
    background: #000;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
}
.skip-link:focus {
    top: 10px;
    left: 10px;
}

/* ======================================================
   WRAPPER & BANNER
   ====================================================== */
#wrapper {
    width: min(100% - 2rem, 800px);
    margin: 0 auto;
    background: #fff;
    border: 5px solid #336699;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
#content {
    flex: 1;
    padding: 0 !important;
    background: #fff;
}
#content > img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ======================================================
   NAVIGATION
   ====================================================== */
#nav {
    background: #336699;
    padding: 0.75rem 0;
    text-align: center;
}
#nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
}
#nav a {
    display: block;
    padding: 12px 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    background-color: #336699;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-size: 0.90rem;
}
#nav a:hover,
#nav a:focus {
    background-color: #40979f;
    color: #fff;
}
@media (max-width: 640px) {
    #nav ul {
        flex-wrap: wrap;
        gap: 8px;
    }
    #nav a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* ======================================================
   TYPOGRAPHY
   ====================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    margin: 1.5rem 0 1rem;
}
h1 {
    font-size: 2.25rem;
    text-align: center;
    color: #336699;
}
.center {
    text-align: center;
}

/* ======================================================
   GLOBAL BIG PICTURE STYLE - .imgcenter
   ====================================================== */
.imgcenter {
    display: block;
    max-width: 680px;
    width: 100%;
    height: auto;
    margin: 0.90rem auto;
    border: 3px solid #336699;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    padding: 5px;
    background-color: white;
}
@media (max-width: 480px) {
    .imgcenter {
        max-width: 92%;
        margin: 1rem 12px;
    }
}

/* ======================================================
   GLOBAL FOOTER
   ====================================================== */
#footer {
    background: #336699;
    color: #d5d0ba;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: auto;
    width: 100%;
}
.ft {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #d5d0ba;
    font-size: 0.9rem;
}
.footer-buttons {
    margin: 0.35rem 0;
    text-align: center;
}
#footer button {
    background-color: #2a9d5e;
    color: white;
    border: none;
    padding: 8px 14px;
    margin: 3px 4px;
    border-radius: 4px;
    font-size: 0.92rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
#footer button:hover {
    background-color: #34c26f;
    color: white;
}
#footer p.ft {
    color: #d5d0ba;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* ======================================================
   DIALOGS
   ====================================================== */
dialog {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 2rem;
    max-width: 90vw;
    max-height: 85vh;
    overflow-y: auto;
    width: min(780px, 90vw);
    background: #fff;
}
dialog::backdrop {
    background: rgba(0,0,0,0.65);
}
.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #c00;
    cursor: pointer;
}
.dialog-content h1, .dialog-content h2, .dialog-content h3,
.dialog-content h4, .dialog-content h5, .dialog-content h6 {
    font-size: 1.35rem !important;
    color: #000 !important;
    font-weight: bold;
    margin: 1.4rem 0 0.8rem;
}
.dialog-content p {
    margin-bottom: 1.1rem;
    line-height: 1.65;
}
.dialog-content ul {
    list-style-type: disc !important;
    margin-left: 30px !important;
    padding-left: 0 !important;
    text-align: left !important;
}

/* ======================================================
   JUSTIFIED TEXT & LISTS - MOBILE FRIENDLY (GLOBAL)
   ====================================================== */
p.just {
    text-align: justify;
    hyphens: auto;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 1.4rem 0;
    padding: 0 15px;
}
li.just {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 1rem 6rem 1rem 3rem;
    padding-left: 1.8rem;
    position: relative;
    text-align: left;
    list-style-type: none;
}
li.just::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #336699;
    font-size: 1.4rem;
    line-height: 1;
    top: 2px;
}
li.just a {
    color: #336699;
    font-weight: bold;
    text-decoration: underline;
}
li.just a:hover {
    color: #40979f;
}
@media (max-width: 768px) {
    p.just {
        text-align: left;
    }
}
.cta-button {
    display: inline-block;
    margin: 8px 0;
    padding: 12px 28px;
    background-color: #336699;
    color: white;
    font-size: 1.08rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}
.cta-button:hover {
    background-color: #40979f;
    transform: translateY(-2px);
}

/* ======================================================
   GLOBAL - CONTACT INFORMATION LEGEND STYLING
   Controls both Request Service Now and Contact Us pages
   ====================================================== */

/* Main form grid layout */
.form-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 14px 25px;
    align-items: start;
}

/* All labels in the grid */
.form-grid label {
    text-align: right;
    font-weight: bold;
    font-size: 1.0rem;
    line-height: 1.9;
}

/* ======================================================
   GLOBAL - VERTICAL ALIGNMENT FIX FOR INPUT FIELDS
   Moves inputs down to better match label baseline
   ====================================================== */
.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid input[type="tel"],
.form-grid select {
    align-self: end !important;
    margin-top: 2px !important;
}

/* Text, email, and select inputs */
.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid select {
    width: 185px;
    font-size: 1.0rem;
}

/* Phone input width */
.form-grid .phone-group input {
    width: 49px !important;
    text-align: center !important;
    font-size: 1.0rem;
}

.form-grid .phone-separator {
    color: #666;
    font-weight: bold;
}

/* ======================================================
   GLOBAL - PHONE ROWS VERTICAL SPACING (UP AND DOWN)
   Tightens space between phone rows while keeping horizontal gap
   ====================================================== */

.form-grid .phone-group {
    display: flex !important;
    gap: 6px !important;                  /* Horizontal gap inside phone group - unchanged */
    align-items: center !important;
    flex-wrap: nowrap !important;
    grid-column: 2 / 3 !important;
    margin-left: 0 !important;
    padding-top: 9px !important;
    padding-bottom: 0px !important;       /* Tightened bottom spacing */
    min-height: 0 !important;
    margin-top: -6px !important;          /* Pulls each phone row up slightly */
    margin-bottom: 0 !important;
}

/* Phone labels - controlled vertical spacing */
.form-grid .phone-label {
    grid-column: 1 / 2 !important;
    align-self: center !important;
    text-align: right !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}


/* Non-bold labels (Company, Service Address, Military, Cell Phone, Work Phone) */
.form-grid label[for="company"],
.form-grid label[for="serviceaddress"],
.form-grid label[for="military"],
.form-grid .cell-phone-label,
.form-grid .work-phone-label {
    font-weight: normal !important;
}

/* Home / Primary Phone stays bold */
.form-grid .primary-phone-label {
    font-weight: bold !important;
}
/* ======================================================
   GLOBAL - EMAIL FIELDS VERTICAL ALIGNMENT
   Moves Email and Re-enter Email up slightly (about 1/16")
   ====================================================== */

.form-grid input[type="email"] {
    align-self: center !important;
    margin-top: -2px !important;     /* Moves the input fields up ~1/16" */
}
/* ======================================================
   GLOBAL - MILITARY / FIRST RESPONDER CHECKBOX ALIGNMENT
   Aligns checkbox with input fields and moves it down slightly
   ====================================================== */

.form-grid label[for="military"] {
    grid-column: 1 / 2 !important;
    text-align: right !important;
    margin-top: -2px !important;      /* Moves label up ~1/16" */
}

.form-grid input#military {
    grid-column: 2 / 3 !important;
    justify-self: start !important;
    margin-left: 0 !important;
    margin-top: 4px !important;      /* Moves checkbox down ~1/16" */
    align-self: start !important;
}

/* ======================================================
   GLOBAL RESPONSIVE - FORM GRID STACK ON MOBILE
   ====================================================== */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .form-grid label {
        text-align: left !important;
    }
}

/* ========= End of GLOBAL RULES =========== */

/* =============================================================================================================
   .page-home INDEX PAGE SPECIFIC STYLING
   ============================================================================================================= */
.page-home h1 {
    font-size: 2.1rem;
    color: #336699;
    text-align: center;
    margin: 1.8rem 0 1.2rem;
    line-height: 1.3;
}
.page-home h1 span {
    font-size: 0.78em;
    color: #555;
    display: block;
    margin-top: 0.6rem;
}

/* H2 and H3 */                           
.page-home h2 {
    font-size: 1.65rem;
    color: #336699;
    text-align: center;
    margin: 2.2rem 0 1.2rem;
    font-weight: bold;
    line-height: 1.3;
}

.page-home h3 {
    font-size: 1.35rem;
    color: #336699;
    text-align: center;
    margin: 1.8rem 0 1.0rem;
    font-weight: bold;
    line-height: 1.3;
}

/* ======================================================
   CLUSTER OF FIVE PICTURES - Index Page Image Table
   ====================================================== */
.page-home table {
    width: 100%;
    max-width: 700px;    /* changed from 820 to 700   */
    margin: 2rem auto;
    border-collapse: separate;
    border-spacing: 12px 0;
    border: 4px solid #336699;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Individual image borders */
.page-home th img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 12px;
    border: 2px solid #336699;
    border-radius: 6px;
    padding: 4px;
    background-color: white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Left and Right column images (backflow devices) */
.page-home th:first-child img,
.page-home th:last-child img {
    max-width: 235px;
    border: 2px solid #555;
}

/* Middle column - Chasity photo */
.page-home th:nth-child(2) img {
    max-width: 275px;
    border: 3px solid #009a22;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Hover effect on all images */
.page-home th img:hover {
    border-color: #00cc33;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transform: scale(1.02);
}

/* "Order Service Here" button */
.page-home .ver16 a {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 28px;
    background-color: #336699;
    color: white;
    font-size: 1.15rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.page-home .ver16 a:hover {
    background-color: #40979f;
    transform: translateY(-2px);
}

/* ======================================================
   IPHONE PORTRAIT ONLY - BREATHING ROOM FOR THE FIVE PICTURES CLUSTER
   ====================================================== */
@media (max-width: 480px) and (orientation: portrait) {
    .page-home table {
        margin: 1.5rem 12px !important;   /* 12px breathing room on left and right */
        max-width: calc(100% - 24px) !important;
        padding: 12px !important;
    }
    
    .page-home th img {
        max-width: 100% !important;
    }
}

/* End of .page-home INDEX PAGE SPECIFIC STYLING */

/* =========================================================================================
   .page-request-service REQUEST SERVICE PAGE SPECIFIC STYLING
   Modern grid layout - 2026 standards - W3C compliant
   ========================================================================================= */

.page-request-service h1 {
    font-size: 2.1rem;
    color: #336699;
    text-align: center;
    margin: 1.8rem 0 1.5rem;
    line-height: 1.3;
}

/* Top rate and warranty buttons */
.page-request-service .center button[type="button"] {
    background-color: #ffffff;
    color: #336699;
    border: 2px solid #336699;
    padding: 10px 18px;
    margin: 6px 8px;
    border-radius: 6px;
    font-size: 1.0rem;
    font-weight: bold;
    cursor: pointer;
}
.page-request-service .center button[type="button"]:hover {
    background-color: #336699;
    color: white;
}

/* "Bold fields are required" line */
.page-request-service form > p:first-of-type {
    display: block !important;
    text-align: left !important;
    margin: 15px 0 25px 35px !important;
    font-size: 1rem;
    font-weight: normal;
    clear: both !important;
    width: 100% !important;
}
.page-request-service form > p:first-of-type strong {
    font-weight: bold !important;
}

.page-request-service form {
    max-width: 100%;
    margin: 0 auto;
}

.page-request-service fieldset {
    border: 1px solid #000;
    padding: 25px 25px 28px;
    margin-bottom: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border-radius: 4px;
}

.page-request-service legend {
    font-size: 1.0rem;
    font-weight: bold;
    padding: 0 12px;
    background: #fff;
}

/* ======================================================
   FORM GRID - MAIN LAYOUT
   ====================================================== */
.page-request-service .form-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 14px 25px;
    align-items: start;
}

/* All labels in grid */
.page-request-service .form-grid label {
    text-align: right;
    font-weight: bold;
    font-size: 1.0rem;
    line-height: 1.9;
}

/* Text, email, and select inputs */
.page-request-service .form-grid input[type="text"],
.page-request-service .form-grid input[type="email"],
.page-request-service .form-grid select {
    width: 185px;
    font-size: 1.0rem;
}

/* Secure & Confidential block */
.page-request-service .form {
    font-size: 0.85rem;
    text-align: center;
    margin: 20px 0 10px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
    grid-column: 1 / -1;
}

/* ======================================================
   BACKFLOW ASSEMBLY & CONFIRM ACCESS HELPER TEXT SPACING
   ====================================================== */
.page-request-service fieldset:nth-of-type(2) p.center,
.page-request-service fieldset:nth-of-type(3) p.center {
    margin-top: -4px !important;      /* Move the helper lines up ~1/16" */
    margin-bottom: 24px !important;   /* Increase space beneath the lines ~3/8" */
    text-align: center !important;
}

/* Additional instructions / comments */
.page-request-service fieldset:last-of-type p.center {
    font-size: 0.95rem;
    margin: 12px 0 25px 0;
    text-align: center;
}

.page-request-service textarea[name="comments"] {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    display: block;
    resize: vertical;
}

/* Submit and Reset buttons */
.page-request-service button[type="submit"],
.page-request-service button[type="reset"] {
    background-color: #336699;
    color: white;
    border: none;
    padding: 12px 28px;
    margin: 10px 8px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}
.page-request-service button[type="submit"]:hover,
.page-request-service button[type="reset"]:hover {
    background-color: #40979f;
}
/* ======================================================
   CHECKBOX HELPER TEXT SPACING - SERVICES & LAWN CARE
   Targets your actual <p class="checkbox-helper">
   ====================================================== */

.page-request-service .checkbox-helper {
    text-align: center !important;
    margin-top: -4px !important;      /* Move the helper line up ~1/16" */
    margin-bottom: 24px !important;   /* Increase space underneath ~3/8" */
    font-size: 0.95rem !important;
}
/* ======================================================
   CHECKBOX POSITIONING - SERVICES & LAWN CARE
   Moves checkboxes right and increases space to labels
   ====================================================== */

.page-request-service #formcheck input[type="checkbox"],
.page-request-service #formcheck1 input[type="checkbox"] {
    margin-left: 60px !important;     /* Moves checkboxes right ~3/4" */
    margin-right: 10px !important;    /* Increases space between checkbox and label ~1/8" */
    vertical-align: middle !important;
}
/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 768px) {
    .page-request-service .form-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .page-request-service .form-grid label {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .page-request-service fieldset {
        padding: 20px 15px 22px;
        margin-left: 12px;
        margin-right: 12px;
    }
    .page-request-service h1 {
        font-size: 1.75rem;
    }
    .page-request-service button[type="submit"],
    .page-request-service button[type="reset"] {
        max-width: 88%;
        padding: 14px 28px;
    }
}

/* End of .page-request-service REQUEST SERVICE PAGE SPECIFIC STYLING */

/* End of .page-request-service REQUEST SERVICE PAGE SPECIFIC STYLING */

/* End of .page-request-service REQUEST SERVICE PAGE SPECIFIC STYLING */

/* =============================================================================================================
   .page-sprinkler-services SPRINKLER SERVICES PAGE
   ============================================================================================================= */
.page-sprinkler-services h1 {
    font-size: 1.95rem;
    color: #336699;
    text-align: center;
    margin: 1.6rem 0 1.2rem;
    line-height: 1.3;
}
.page-sprinkler-services h2 {
    font-size: 1.65rem;
    color: #336699;
    text-align: center;
    margin: 2.2rem 0 1.2rem;
    font-weight: bold;
    line-height: 1.3;
}

/* End of .page-sprinkler-service SERVICE PAGE SPECIFIC STYLING */

/* =============================================================================================================
   .page-lawn-mowing LAWN MOWING SERVICES PAGE
   ============================================================================================================== */
.page-lawn-mowing h2 {
    font-size: 1.65rem;
    color: #336699;
    text-align: center;
    margin: 2.2rem 0 1.2rem;
    font-weight: bold;
    line-height: 1.3;
}

/* End of .page-lawn-mowing SERVICE PAGE SPECIFIC STYLING */

/* ===============================================================================================================
   .page-contact CONTACT US PAGE SPECIFIC STYLING
   Modern grid layout - 2026 standards - W3C compliant
   =========================================================================================================== */

.page-contact h1 {
    font-size: 2.1rem;
    color: #336699;
    text-align: center;
    margin: 1.8rem 0 1.5rem;
    line-height: 1.3;
}

.page-contact .center .note {
    color: #c00;
    font-weight: bold;
}

/* "Bold fields are required" line */
.page-contact form > p:first-of-type {
    display: block !important;
    text-align: left !important;
    margin: 15px 0 25px 35px !important;
    font-size: 1rem;
    font-weight: normal;
    clear: both !important;
    width: 100% !important;
}
.page-contact form > p:first-of-type strong {
    font-weight: bold !important;
}

.page-contact form {
    max-width: 100%;
    margin: 0 auto;
}

.page-contact fieldset {
    border: 1px solid #000;
    padding: 25px 25px 28px;
    margin-bottom: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border-radius: 4px;
}

.page-contact legend {
    font-size: 1.0rem;
    font-weight: bold;
    padding: 0 12px;
    background: #fff;
}





/* Phone input width */
.page-contact .phone-group input {
    width: 49px !important;
    text-align: center !important;
    font-size: 1.0rem;
}

.page-contact .phone-separator {
    color: #666;
    font-weight: bold;
}


/* Secure & Confidential block */
.page-contact .form {
    font-size: 0.85rem;
    text-align: center;
    margin: 20px 0 10px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
    grid-column: 1 / -1;
}

/* Additional instructions / comments */
.page-contact fieldset:last-of-type p.center {
    font-size: 0.95rem;
    margin: 12px 0 25px 0;
    text-align: center;
}

.page-contact textarea[name="comments"] {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    display: block;
    resize: vertical;
}

/* Submit and Reset buttons */
.page-contact button[type="submit"],
.page-contact button[type="reset"] {
    background-color: #336699;
    color: white;
    border: none;
    padding: 12px 28px;
    margin: 10px 8px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}
.page-contact button[type="submit"]:hover,
.page-contact button[type="reset"]:hover {
    background-color: #40979f;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 480px) {
    .page-contact fieldset {
        padding: 20px 15px 22px;
        margin-left: 12px;
        margin-right: 12px;
    }
    .page-contact h1 {
        font-size: 1.75rem;
    }
    .page-contact button[type="submit"],
    .page-contact button[type="reset"] {
        max-width: 88%;
        padding: 14px 28px;
    }
}

/* End of .page-contact CONTACT US SPECIFIC STYLING */

/* ========================================================================================
   .page-confirmation CONFIRMATION PAGE SPECIFIC STYLING
   ======================================================================================== */
.page-confirmation h1 {
    font-size: 2.4rem;
    color: #336699;
    text-align: center;
    margin: 1.8rem 0 1.2rem;
    line-height: 1.2;
}
.page-confirmation .thankyou {
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 2rem auto;
    text-align: center;
    padding: 0 15px;
}
.page-confirmation .home-return-btn {
    display: inline-block;
    padding: 16px 36px;
    background-color: #336699;
    color: white;
    font-size: 1.15rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 92%;
    text-align: center;
}
.page-confirmation .home-return-btn:hover {
    background-color: #40979f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.page-confirmation #nav {
    height: 52px;
    margin-bottom: 0.8rem;
}
.page-confirmation main {
    margin-bottom: 0.8rem;
}
.page-confirmation #footer {
    padding: 0.9rem 1rem 1.1rem 1rem;
    background: #336699;
    color: #d5d0ba;
    text-align: center;
    font-size: 0.88rem;
    margin-top: auto;
}
.page-confirmation .ft {
    margin: 0;
    line-height: 1.6;
}
/* End of .page-confirmation CONFIRMATION PAGE SPECIFIC STYLING */   
   
/* =================================================================================
   .page-backflow-testing BACKFLOW TESTING PAGE SPECIFIC STYLING
   ================================================================================= */
.page-backflow-testing h2 {
    font-size: 1.65rem;
    color: #336699;
    text-align: center;
    margin: 2.2rem 0 1.2rem;
    font-weight: bold;
    line-height: 1.3;
}



/* End of ..page-backflow-testing BACKFLOW TESTING PAGE SPECIFIC STYLING */ 

/* ================================================================================
   .page-what-is-backflow WHAT IS BACKFLOW PAGE SPECIFIC STYLING
   ================================================================================ */
.page-what-is-backflow h1 {
    font-size: 2.1rem;
    color: #336699;
    text-align: center;
    margin: 1.8rem 0 1.5rem;
    line-height: 1.3;
}
.page-what-is-backflow h2 {
    font-size: 1.65rem;
    color: #336699;
    text-align: center;
    margin: 2.2rem 0 1.2rem;
    font-weight: bold;
    line-height: 1.3;
}
.page-what-is-backflow .video-container {
    max-width: 760px;
    margin: 2.5rem auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 4px solid #336699;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    background-color: #000;
}
.page-what-is-backflow .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/*.page-what-is-backflow .cta-button {
    display: inline-block;
    margin: 8px 0;
    padding: 12px 28px;
    background-color: #336699;
    color: white;
    font-size: 1.08rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}
.page-what-is-backflow .cta-button:hover {
    background-color: #40979f;
    transform: translateY(-2px);
}*/

/* End of .page-what-is-backflow WHAT IS BACKFLOW PAGE SPECIFIC STYLING */

/* =========================================================================================
   .page-sitemap SITEMAP PAGE SPECIFIC STYLING
   ========================================================================================= */
.page-sitemap h1 {
    font-size: 2.1rem;
    color: #336699;
    text-align: center;
    margin: 1.8rem 0 1.5rem;
    line-height: 1.3;
}
.page-sitemap table {
    width: 100%;
    max-width: 760px;
    margin: 2.2rem auto 1.8rem auto;
    border-collapse: collapse;
    background: #fff;
    border: 3px solid #336699;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.page-sitemap th,
.page-sitemap td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}
.page-sitemap th {
    background: #336699;
    color: white;
    font-weight: bold;
    text-align: center;
}
.page-sitemap tr:last-child td {
    border-bottom: none;
}
.page-sitemap td a {
    color: #336699;
    font-weight: bold;
    text-decoration: underline;
}
.page-sitemap td a:hover {
    color: #40979f;
}
.page-sitemap button {
    background-color: #2a9d5e;
    color: white;
    border: none;
    padding: 8px 14px;
    margin: 4px 0;
    border-radius: 4px;
    font-size: 0.92rem;
    cursor: pointer;
}
.page-sitemap button:hover {
    background-color: #34c26f;
}
@media (max-width: 768px) {
    .page-sitemap table {
        max-width: 100%;
        margin: 2rem 14px 1.6rem 14px;
    }
}
@media (max-width: 480px) {
    .page-sitemap table {
        margin: 1.8rem 12px 1.4rem 12px;
    }
}

/* End of .page-sitemap SITEMAP PAGE SPECIFIC STYLING */

/* ====================================================================================
   .page-serverabuse SERVER ABUSE PAGE SPECIFIC STYLING
   ==================================================================================== */
.page-serverabuse h1 {
    font-size: 2.0rem;
    color: #336699;
    text-align: center;
    margin: 1.8rem 0 1.5rem;
    line-height: 1.3;
}
.page-serverabuse ol.just {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 1.4rem 2rem;
    padding-left: 1.2rem;
}
.page-serverabuse ol.just li {
    margin-bottom: 1.2rem;
}
/*.page-serverabuse .cta-button {
    display: inline-block;
    margin: 8px 0;
    padding: 12px 28px;
    background-color: #336699;
    color: white;
    font-size: 1.08rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}
.page-serverabuse .cta-button:hover {
    background-color: #40979f;
    transform: translateY(-2px);
}*/

/* End of .page-serverabuse SERVER ABUSE PAGE SPECIFIC STYLING */

/* End of main-b.css */