                        /* =========================
   GENERAL PAGE STYLING
========================= */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f9;
    color: #222;
    line-height: 1.7;
}
/* BACKGROUND IMAGE */

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('jnget_home_background.png') no-repeat center center/cover;
    opacity: 0.3;
    z-index: -1;
}


/* =========================
   HEADER
========================= */

header {
    background-color: #003366;
    color: white;
    padding: 18px 40px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 90px;
    height: auto;
    margin-right: 20px;
}

.header-title {
    font-size: 30px;
    font-weight: bold;
}

.header-sub {
    font-size: 15px;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* =========================
   NAVIGATION BAR
========================= */

nav {
    background-color: #00509e;
    padding: 14px 0;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 14px 18px;
    font-size: 12px;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    background-color: #003f7d;
    border-radius: 5px;
}

/* =========================
   MAIN CONTENT
========================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 35px auto;
}

.main-content {
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    text-align: justify;
}

.main-content h1 {
    color: #003366;
    text-align: center;
    margin-bottom: 25px;
    font-size: 34px;
}

.main-content p {
    margin-bottom: 20px;
    font-size: 17px;
}

/* =========================
   FOCUS AREAS LIST
========================= */

.main-content ul {
    padding-left: 55px;
    line-height: 1.9;
}

.main-content li {
    margin-bottom: 8px;
}

/* =========================
   BUTTON GROUP
========================= */

.button-group {
    margin-top: 35px;
    text-align: center;
}

/* BUTTON DESIGN */

.button-group .btn {
    display: inline-block;
    background-color: #00509e;
    color: white;
    text-decoration: none;

    padding: 14px 26px;

    /* LARGE TAB SPACE BETWEEN BUTTONS */
    margin-right: 45px;

    margin-bottom: 18px;

    border-radius: 6px;

    font-size: 16px;
    font-weight: bold;

    transition: 0.3s ease;
}

/* REMOVE EXTRA SPACE AFTER LAST BUTTON */

.button-group .btn:last-child {
    margin-right: 0;
}

/* HOVER EFFECT */

.button-group .btn:hover {
    background-color: #003f7d;
    transform: translateY(-2px);
}

/* =========================
   FOOTER
========================= */

footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 18px;
    margin-top: 40px;
    font-size: 15px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media screen and (max-width: 768px) {

    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .header-left {
        flex-direction: column;
    }

    .logo-img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .header-title {
        font-size: 24px;
    }

    nav a {
        display: block;
        padding: 12px;
    }

    .main-content {
        padding: 25px;
    }

    .button-group .btn {
        display: block;
        width: 85%;
        margin: 15px auto;
    }
}            