/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* ===== Header ===== */
.site-header {
    width: 100%;
    background-color: #0a2540;
    border-bottom: 1px solid #0f355a;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* logo left, name right */
    padding: 0 20px;
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
}

.brand-icon i {
    font-style: italic; /* FR italic letters */
}

/* Trade Name */
.brand-name-link {
    text-decoration: none;
}

.brand-name {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.brand-name-link:hover .brand-name,
.brand-logo:hover .brand-icon {
    opacity: 0.85; /* subtle hover effect */
}

/* ===== Main Content ===== */
.main-content {
    padding: 60px 20px;
}

.content-container {
    max-width: 900px;
    margin: auto;
}

.main-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0a2540;
}

.main-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ===== Footer ===== */
.site-footer {
    background-color: #f4f6f8;
    border-top: 1px solid #e0e0e0;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
}

.site-footer a {
    color: #0a2540;
    text-decoration: none;
    margin: 0 5px;
    font-weight: 500;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* ===== Sticky TFN ===== */
#tfn-bar {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #0a2540;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    z-index: 999;
}

#tfn-bar a {
    color: #E6B800;
    font-weight: 600;
    text-decoration: none;
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        justify-content: flex-start;
        gap: 15px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    #tfn-bar {
        font-size: 14px;
        padding: 10px 14px;
    }
}

@media screen and (max-width: 480px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 8px;
        padding: 10px 15px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .site-footer a {
        display: block;
        margin: 5px 0;
    }
}
