.chat-link {
    display: inline-block;
    padding: 10px 18px;
    background-color: #003366;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.chat-link:hover {
    background-color: #003580;
}




/* =========================================================
   1. GOOGLE TRANSLATE – HIDE TOP BAR & PREVENT SHIFT
========================================================= */

/* Hide Google Translate top banner */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

/* Prevent page from being pushed down */
html {
    margin-top: 0 !important;
}

body {
    top: 0 !important;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #000;
}

/* Hide Google branding text */
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

/* Keep dropdown usable */
.goog-te-gadget select {
    font-size: 13px;
}


/* =========================================================
   2. RESET
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================
   3. CONTENT WIDTH
========================================================= */
.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   4. TYPOGRAPHY
========================================================= */
p {
    text-align: justify;
    margin-bottom: 16px;
    line-height: 1.75;
    font-size: 16px;
}

h4 {
    margin-top: 36px;
    margin-bottom: 12px;
    line-height: 1.4;
}


/* =========================================================
   5. LISTS
========================================================= */
.container ul {
    list-style: disc;
    list-style-position: outside;
    padding-left: 1.8em;
    margin-bottom: 18px;
}

.container li {
    margin-bottom: 8px;
    line-height: 1.7;
}


/* =========================================================
   6. IMAGES
========================================================= */
.profile-img {
    width: 100%;
    max-width: 480px;
    display: block;
    margin: 30px auto;
}


/* =========================================================
   7. HEADER
========================================================= */
.site-header {
    background: #f7f7f7;
    border-bottom: 1px solid #ddd;
    padding: 15px 25px;
    position: relative;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/* =========================================================
   8. LOGO AREA
========================================================= */
.logo-area {
    display: flex;
    align-items: center;
}

.logo {
    height: 150px;
    width: auto;
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .name {
    font-size: 26px;
    font-weight: 700;
}

.logo-text .title {
    font-size: 15px;
    font-weight: 600;
    color: #003366;
}


/* =========================================================
   9. MENU (BUTTON STYLE)
========================================================= */
.main-nav {
    flex: 1;
    text-align: center;
}

.main-nav a {
    display: inline-block;
    margin: 4px 5px;
    padding: 8px 14px;          /* ⬅ reduced */
    font-size: 13px;            /* ⬅ reduced */
    font-weight: 600;
    text-decoration: none;
    color: #003366;
    background-color: #ffffff;
    border: 1.5px solid #003366; /* ⬅ thinner border */
    border-radius: 6px;
    transition: all 0.25s ease;
}

.main-nav a:hover {
    background-color: #003580;
    color: #ffffff !important;
    border-color: #003580;
}


/* Active menu button */
.main-nav a.active {
    background-color: #003366;
    color: #ffffff !important;
    border-color: #003366;
}


/* =========================================================
   10. MOBILE STYLES
========================================================= */
@media (max-width: 768px) {

    .container {
        max-width: 100%;
    }

    p {
        font-size: 15px;
        line-height: 1.7;
    }

    .container ul {
        padding-left: 1.6em;
    }

    .header-inner {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        height: 80px;
        margin-right: 0;
    }

    .logo-text {
        text-align: center;
        align-items: center;
    }

    .main-nav a {
        padding: 10px 16px;
        font-size: 13px;
        margin: 6px 4px;
    }
}


/* =========================================================
   11. FOOTER
========================================================= */
.site-footer {
    background-color: #003580;
    height: 192px;
    width: 100%;
}

.footer-inner {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
}

.footer-bottom-text {
    color: #ffffff;
    font-size: 14px;
    text-align: center;
}


/* =========================================================
   12. DESKTOP LIST REFINEMENT
========================================================= */
@media (min-width: 769px) {

    .container ul {
        padding-left: 1.6em;
    }

    .container li {
        line-height: 1.75;
    }
}
