body {
    margin: 0;
    font-family: 'PP Neue Montreal', 'Arial', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

.netceed-blue {
    background-color: #003A51;
    color: #fff !important;
}

.netceed-green {
    background-color: #9EFF00;
    color: #2F3034 !important;
}

header {
    height: 60px;
    padding: 10px 20px;
    box-sizing: border-box;
}

header.netceed-blue {
    box-shadow: 0 5px 20px 0 #003A51;
}

.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

header .logo {
    display: inline-block;
    height: 50px;
}

header .logo img {
    max-height: 40px;
}

header .nav-container {
    float: right;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

header .nav-container nav {
    display: inline-block;
}

header .nav-container nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header .nav-container nav ul li {
    display: inline-block;
}

header .nav-container nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
}

header .nav-container nav ul li a:after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

header .nav-container nav ul li a:hover:after {
    width: 100%;
}

.special-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;

}



.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.banner-content .search-container {
    position: relative;
}

.banner-content .search-container h1 {
    text-align: center;
    margin: 0 0 40px 0;
    font-weight: 400;
    font-size: 60px;
}

.banner-content .search-container input {
    width: 50vw;
    height: 30px;
    padding: 20px 40px;
    border: none;
    border-radius: 60px;
    font-size: 20px;
    color: #000;
}

.banner-content .search-container input::placeholder {
    font-style: italic;
    padding-left: 5px;
}

.banner-content .search-container button {
    position: absolute;
    right: 0;
    height: 72px;
    width: 100px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.banner-content .search-container button span.material-symbols-outlined {
    font-size: 40px !important;
}

/* Under banner content */

.under-banner {
    background-color: #d9d9d9;
    color: #fff;
    margin-bottom: 40px;
}

.under-banner-content {
    padding: 20px;
}

.under-banner-content .content-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.under-banner-content .content-item {
    flex-basis: 300px;
    border-radius: 10px;
    text-align: center;
    color: #555;
    cursor: pointer;
}

.under-banner-content .content-item h2 {
    font-size: 18px;
    font-weight: 500;
}

.under-banner-content .content-item-icon {
    width: 100%;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: grayscale(100%);
}

.under-banner-content .content-item:hover .content-item-icon {
    filter: grayscale(90%);
}

/* Main content */

.main-content {
    padding: 0 20px;
}

.main-content .fixed-width {
    width:60vw;
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 1200px) {
    .main-content .fixed-width {
        width: 80vw;
    }
}

@media (max-width: 1000px) {
    .main-content .fixed-width {
        width: 95vw;
    }
}

.flex-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

@media (max-width: 700px) {
    .flex-wrapper {
        flex-wrap: wrap;
    }
}

/* Help topics */

.help-topics-title {
    margin-bottom: 20px;
}

.help-topics {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 1500px) {
    .help-topics {
        grid-template-columns: 1fr;
    }
}

.topic ul {
    list-style-type: square;
}

.topic a {
    text-decoration: none;
    color: #333;
}

.topic a:hover {
    color: #000;
}

/* Help sidebar */

.help-sidebar-item {
    width: 230px;
    padding: 5px 20px;
    background-color: #f3f3f3;
    border-radius: 10px;
    margin-bottom: 20px;
}

.help-sidebar-list {
    list-style-type: none;
    padding: 5px;
}

.help-sidebar-list li {
    margin-bottom: 5px;
}

.help-sidebar-list li a {
    text-decoration: none;
    color: #333;
}

.help-sidebar-list li a:hover {
    color: #000;
    -webkit-text-stroke: 1px #000;
}


/* Footer */

footer {
    background-color: #003A51;
    color: #fff;
    padding: 20px 0;
}

footer .footer-content {
    width: 60vw;
    max-width: 1200px;
    margin: auto;
}
