body {
    overflow: auto;
}

header {
    height: 70px;
    width: 100%;
    background: #000;
    filter: drop-shadow(0px 0px 5px #000);
}

.spec-nav {
    background: #000;
    height: 70px;
}

.navbar {
    margin: 0;
    padding-top: 18px;
}

.nav-container {
    background: #000;
    width: 100%;
}

.nav-center {
    max-width: 1440px;
    margin: 0 auto;
    min-height: 70px;
}

.news-header img {
    width: 100%;
    height: 50vh;
    object-position: center center;
    object-fit: cover;
}

.news-header-top img {
    width: 100%;
    height: 40vh;
    object-position: top top;
    object-fit: cover;
}

.img-supp img {
    width: 100%;
}

li {
    padding: 3px;
}

.news-body li::marker {
    content: '-';
    font-size: 12pt;
}

#news-hero {
    position: relative;
}

#news-hero .background-container {
    position: relative;
}

#news-hero .background-container img {
    width: 100%;
    height: 23vh;
    object-position: center top;
    object-fit: cover;
    filter: brightness(40%);
}

#news-hero h2 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    max-width: 1185px;
    width: 100%;
    text-align: center;
    margin: 0;
    font-size: 37pt;
}

#news-hero .follow-us {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 14pt;
    z-index: 1000;
    filter: brightness(100%);

}

#news-hero .follow-us p {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    color: white;
    margin: 0;
    font-size: 14pt;
}

#news-hero .follow-us a img {
    width: 115px;
    height: auto;
    margin-left: 10px;
    vertical-align: middle;
}




#declaration-header {
    position: relative;
}

#declaration-header img {
    width: 100%;
    height: 40vh;
    object-position: center top;
    object-fit: cover;
    filter: brightness(40%);
}

#declaration-header h2 {
    position: absolute;
    top: 50%;
    /* Center the text vertically */
    left: 50%;
    /* Center the text horizontally */
    transform: translate(-50%, -50%);
    /* Offset the text by half its width & height to truly center it */
    color: white;
    /* Text color - adjust as necessary */
    max-width: 1185px;
    width: 100%;
    /* Adjust width as necessary, can help with text wrapping */
    text-align: left;
    /* Center-align the text within its container */
    margin: 0;
    font-size: 47pt;
}

.declaration-content p,
span,
ul li {
    font-size: 14pt;
}


label {
    display: block;
    margin-bottom: 20px;
}

input[type="checkbox"] {
    margin-right: 10px;
}

#nextBtn {
    background-color: #181c1d;
    color: #fff;
    border: 1px solid;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 120px;
    margin-bottom: 30px;
}

#nextBtn:hover {
    background-color: #fff;
    border: 1px solid #181c1d;
    color: #181c1d;
}

#nextBtn:disabled {
    background-color: #b3c7d6;
    cursor: not-allowed;
}

#decleration-form {
    display: none;
}

@media screen and (max-width: 768px) {

    #declaration-header h2 {
        font-size: 26pt;
        text-align: center;
        padding: 20px;
        width: 90%;
    }

    .terms-container {
        width: 90%;
    }

    .terms-content p {
        font-size: 12pt;
    }

    .item {
        padding: 20px;
    }

    .navbar {
        margin: 0;
        padding: 20px;
    }

    .nav-active {
        list-style: none;
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        /* Lower than the burger's z-index */
        transition: all 1s ease;
        -webkit-transition: all 1s ease;
    }

    .news-headline {
        margin: 0;
    }

    .news-headline h2 {
        text-align: left;
        padding-top: 0;
        font-size: 24pt;
    }

    .publish-date p {
        margin-bottom: 0;
    }

    .news-body p {
        font-size: 14pt;
        line-height: 17pt;
    }
}