/* Reset */
/* ==========================================================
   APPLIES TO EVERYTHING ON THE PAGE
   ========================================================== */
* {
    box-sizing: border-box;
}
/* ==========================================================
   1. GLOBAL SETTINGS
   ========================================================== */

   body {
    margin: 0;
    /*font-family: Arial, sans-serif;*/
    font-family: "Verdana";
    font-size: 18px;
    font-weight: 250;
    font-style: normal;
    background: white;
    color: #000080;
    line-height: 1.6;
}

/* ==========================================================
   2. HEADER
   ========================================================== */

   .header-logo {
    width: 140px;
    height: auto;
    margin-left: 20px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;

    background: white;
    border-bottom: 1px solid white;

    display: flex;
    align-items: center;

    z-index: 1000;
}

/* Company name */

.site-header h1 {
    margin: 0;
    font-size: 24px;
    color: #000080;
}

/* ==========================================================
   3. NAVIGATION
   ========================================================== */

.floating-nav {

    position: fixed;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    background: #000080;

    border-radius: 30px;

    padding: 12px 25px;

    z-index: 1000;

}


.floating-nav ul {

    list-style: none;

    display: flex;

    gap: 25px;

    margin: 0;

    padding: 0;

}


.floating-nav a {

    color: white;

    text-decoration: none;

    font-size: 18px;

}

.floating-nav a:hover {
    color: #FFD700;
}

/* ==========================================================
   4. PAGE CONTENT
   ========================================================== */


main {
    padding-top: 120px;
}

section {
    padding: 60px;
}

/* ==========================================================
   5. FOOTER
   ========================================================== */

.logo {

    display: block;

    width: 360px;      /* Adjust to suit */

    height: auto;

    margin: 20px auto;

}

/* ==========================================================
   6. SMARTPHONE OVERRIDES
   ========================================================== */

@media (max-width: 600px) {

 
    .floating-nav {

        top: 15px;

        padding: 18px 15px;

        width: calc(100% - 30px);

    }


    .floating-nav ul {

        gap: 12px;

        justify-content: center;

    }


    .floating-nav a {

        font-size: 18px;

    }


    main {

        padding-top: 170px;

        padding-left: 15px;

        padding-right: 15px;

    }

    .header-logo {
    display: none;
}
}