.dsl-header-container {
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
}

.dsl-main-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1rem;
    background: #fff;
}

.dsl-header {
    background: #003f5e;
    color: #fff;
    padding: 0.5rem 0;
    border-bottom: 4px solid #b5bd00;
}

.dsl-logo-link {
    display: flex;
    align-items: center;
}
.dsl-logo {
    height: 60px;
    margin-right: 1rem;
}
.dsl-title {
    font-size: 1.5rem;
    font-weight: bold;
}
.dsl-top-nav {
    background: #005a8b;
    padding: 0;
    position: relative;
}
.nav-toggle {
    display: none;
}
.nav-toggle-label {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}
.nav-toggle-label span {
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
.dsl-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 1rem;
}
.dsl-nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    transition: background 0.2s;
}
.dsl-nav-link.active, .dsl-nav-link:hover {
    background: #b5bd00;
    color: #003f5e;
}

/* Responsive menu */
@media (max-width: 900px) {
    .dsl-nav-list {
        display: none;
        flex-direction: column;
        background: #005a8b;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1000;
    }
    .nav-toggle:checked + .nav-toggle-label + .dsl-nav-list {
        display: flex;
    }
    .nav-toggle-label {
        display: flex;
    }
    .dsl-nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #b5bd00;
    }
    .dsl-banner-title {
        font-size: 1.5rem;
    }
    .dsl-seal {
        height: 50px;
    }
}
@media (max-width: 600px) {
    .dsl-banner-title {
        font-size: 1.1rem;
    }
    .dsl-seal {
        height: 36px;
    }
}

.dsl-footer {
    background: #003f5e;
    color: #fff;
    padding: 1rem 0;
    border-top: 4px solid #b5bd00;
}
.dsl-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}
.dsl-footer-nav a {
    color: #fff;
    margin-right: 1.5rem;
    text-decoration: none;
    font-weight: 500;
}
.dsl-footer-nav a:hover {
    text-decoration: underline;
    color: #b5bd00;
}
.or-gov-bar {
    background: #0074ae;
    color: #fff;
    border-bottom: 3px solid #222;
    /*padding-left: 1.5rem;
    padding-right: 1.5rem;*/
}
.or-gov-bar-content {
    display: flex;
    align-items: center;
    width: 100%;
    /* Remove max-width and margin: 0 auto; */
    padding: 0 1.5rem;
    gap: 1.5rem; /* Adds space between logo and link */
}
.or-gov-logo {
    height: 46px;
    margin-right: 0.5rem;
}
.or-gov-text {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-right: 2.5rem;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.or-gov-nav {
    flex: 1;
    display: flex;
    align-items: center;
}
.or-gov-home-link {
    /*    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;*/
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Liberation Sans", sans-serif;
    font-size: 1.05rem; /* Adjust as needed */
    font-weight: 450; /* Optional: for a bolder look */
    color: #212529; /* Optional: match your app's text color */
    text-decoration: none;
}
.or-gov-home-link:hover {
    color: #b5bd00;
    text-decoration: underline;
}
.dsl-green-banner {
    background: #81993b;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 2rem 1.5rem 2rem 1.5rem;
    max-width: 100vw;
    border-bottom: 1px solid #222;
    /*padding-left: 1.5rem;
    padding-right: 1.5rem;*/
}
.dsl-green-banner-content {
    width: 100%;
    padding: 0;
}
.dsl-seal {
    height: 60px;
    margin-right: 2rem;
}
.dsl-banner-title {
    font-size: 2rem; /* Reduced from 4rem to 2rem (about 50%) */
    font-weight: 400;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    line-height: 1.1;
}
img, svg {
    max-width: 100%;
    height: auto;
}

/* Make disabled submit more apparent when captcha not solved */
.btn-disabled-recaptcha {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.85;
}

