/* Global Refets */
body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #1a2b34;
    /* Dark tint from bottom of image */
    font-size: 16px;
    /* Increased base from 14px */
}

body {
    border-top: 30px solid #122832;
    /* Top stripe matching footer */
}

/* Header */
.header-wrapper {
    background-color: #ffffff;
    padding: 20px 0;
    /* Increased padding */
    border-bottom: none;
}

.client-logo {
    background-image: url('../images/forward-air-logo.png');
    background-repeat: no-repeat;
    height: 70px;
    /* Increased */
    width: 350px;
    /* Increased */
    background-size: contain;
}

/* Hero Section */
.hero-wrapper {
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    /* Use viewport height for better scaling */
    padding-top: 100px;
    /* Scaled up */
    padding-bottom: 100px;
    /* Scaled up */
    color: #ffffff;
    position: relative;
    display: flex;
    /* Centering content vertically */
    align-items: center;
}

.hero-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    /* Ensure full width in container */
}

.welcome-title {
    font-size: 42px;
    /* ~140% of 28px -> ~40px */
    font-weight: bold;
    margin-bottom: 35px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.content-text {
    font-size: 22px;
    /* ~140% of 16px */
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.authority-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.authority-list li {
    margin-bottom: 10px;
}

.authority-list li::before {
    content: "o ";
    margin-right: 10px;
    font-weight: bold;
}

.final-instruction {
    margin-top: 30px;
}

/* CTA Button - Scaled Up */
.cta-container {
    margin-top: 80px;
}

.btn-next-step {
    background-color: rgba(0, 0, 0, 0.4);
    border: 3px solid #cc0000;
    /* Thicker border */
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    /* Larger font */
    padding: 18px 50px;
    /* Larger padding */
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-next-step:hover,
.btn-next-step:focus {
    background-color: #cc0000;
    color: #fff;
    text-decoration: none;
    outline: none;
}

/* Footer */
.footer-wrapper {
    background-color: #122832;
    color: #a0b0b8;
    padding: 40px 0;
    font-size: 14px;
    /* Scaled up from 12px */
    border-top: none;
}

.footer-container a {
    color: #fff;
    text-decoration: underline;
}

.rmis-status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ffc107;
    border-radius: 50%;
}

.rmis-status-text {
    color: #fff;
    margin-left: 8px;
}

/* Large Monitor Adjustment */
@media (min-width: 1600px) {
    .container {
        width: 1400px;
        /* Allow wider container on very large screens */
    }

    .welcome-title {
        font-size: 52px;
    }

    .content-text {
        font-size: 26px;
    }
}