@charset "utf-8";
/* CSS Document */

/* Reset & Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    /* Increased base size for better readability on mobile */
    background-color: #8fd7fd;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Center all images */
}

a {
    text-decoration: none;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFFFFF;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
    padding: 20px;
    text-align: center;
    /* Center content by default */
}

/* Header */
.header-image {
    width: 100%;
    display: block;
}

/* Navigation - Converted from table to Flexbox */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #3dc8ff;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-item {
    flex: 1 1 auto;
    text-align: center;
}

.menulink {
    display: block;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
    background: #00b8ff;
    font-size: 14px;
    padding: 12px 10px;
    border-right: 1px solid #EEEEEE;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.menulink:hover,
.menulink.current {
    background: #0da2f4;
    color: #333333;
}

/* Typography & Utility Classes */
h1 {
    font-size: 24px;
    /* Scaled for mobile */
    margin-bottom: 1em;
    text-align: center;
}

h3 {
    font-size: 1.25em;
    margin-top: 1.5em;
    font-weight: bold;
}

p {
    margin-bottom: 1em;
}

/* Preserving Original Color Classes */
.style2 {
    font-weight: bold;
}

.style4 {
    font-size: 12px;
    color: #000000;
}

.style5 {
    font-size: 12px;
}

/* Bumped up slightly */
.style6 {
    font-size: 12px;
}

.style7 {
    color: #0000CC;
}

.style8 {
    color: #FF0000;
}

.style9 {
    color: #333333;
}

.style10 {
    color: #FF6600;
    font-weight: bold;
}

.style11 {
    font-weight: bold;
}

.style13 {
    color: #CC0000;
    font-weight: bold;
}

.style14 {
    color: #666666;
}

.style15 {
    color: #CC0000;
}

.contact-info {
    font-size: 1.2em;
    margin: 20px 0;
}

/* Footer */
.footer {
    background-color: #3dc8ff;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

/* Media Queries */
/* Media Queries */
@media screen and (max-width: 768px) {
    /* Kept nav-menu as flex-row (default) to match desktop view per user request */
    /* .nav-menu {
        flex-direction: column;
    } */

    .menulink {
        /* Optional: adjust padding or border for mobile if needed, 
           but keeping it similar to desktop as requested */
        width: auto;
        /* Allow natural width */
        border-right: 1px solid #EEEEEE;
        /* Keep desktop border style */
        border-bottom: none;
    }

    .container {
        width: 100%;
        margin: 0;
    }

    .header-image {
        height: auto;
    }
}