

    .fen-navbar {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #ffffff;
        border-bottom: 1px solid #e9edf2;
        transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
        box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        padding: 0 24px;
        height: 70px;
        display: flex;
        align-items: center;

    }

    .fen-navbar.fen-scrolled {
        background: rgba(255,255,255,0.72);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 4px 24px rgba(0,0,0,0.10);
        border-bottom-color: rgba(233,237,242,0.5);
    }
    .fen-nav-inner {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .fen-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        flex-shrink: 0;
    }
    .fen-logo svg {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }
    .fen-logo-text {
        font-size: 1.2rem;
        font-weight: 700;
        color: #0b1a26;
        letter-spacing: -0.02em;
        white-space: nowrap;
    }
    .fen-logo-text span { color: #2f7b9c; }
    .fen-menu {
        display: flex;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 6px;
        flex-wrap: wrap;
    }
    .fen-menu li { margin: 0; }
    .fen-menu a {
        display: inline-block;
        padding: 10px 16px;
        font-size: 0.95rem;
        font-weight: 500;
        color: #1e2b37;
        text-decoration: none;
        position: relative;
        white-space: nowrap;
        border-radius: 6px;
        transition: color 0.2s, background 0.2s;
    }
    .fen-menu a::after {
        content: '';
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 4px;
        height: 2.5px;
        background: #2f7b9c;
        border-radius: 3px;
        transform: scaleX(0);
        transform-origin: right center;
        transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    }
    .fen-menu a:hover {
        color: #1a4d5e;
        background: rgba(47,123,156,0.06);
    }
    .fen-menu a:hover::after {
        transform: scaleX(1);
        transform-origin: left center;
    }
    .fen-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 11px 22px;
        font-size: 0.95rem;
        font-weight: 600;
        color: #fff;
        background: #e8833a;
        border-radius: 30px;
        text-decoration: none;
        white-space: nowrap;
        flex-shrink: 0;
        transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
        box-shadow: 0 3px 12px rgba(232,131,58,0.30);
    }
    .fen-cta:hover {
        background: #d4722a;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(232,131,58,0.38);
    }
    .fen-hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        background: none;
        border: none;
        z-index: 1001;
        flex-shrink: 0;
    }
    .fen-hamburger span {
        display: block;
        width: 26px;
        height: 2.5px;
        background: #1e2b37;
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    .fen-hamburger.fen-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .fen-hamburger.fen-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .fen-hamburger.fen-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
    .fen-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.35);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s;
    }
    .fen-overlay.fen-show { display: block; opacity: 1; }


    .fen-news-section {
        background: #f0f3f7;
        margin: 40px 0 0;
        padding: 48px 20px 40px;
        width: 100%;
        border-top: 1px solid #dce3eb;
    }
    .fen-news-container { max-width: 1200px; margin: 0 auto; }
    .fen-news-heading { font-size: 1.6rem; font-weight: 700; color: #0b1a26; margin-bottom: 8px; }
    .fen-news-subheading { font-size: 0.95rem; color: #5a6f7e; margin-bottom: 30px; border-left: 4px solid #2f7b9c; padding-left: 14px; }
    .fen-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; padding: 0; margin: 0; }
    .fen-news-item { background: #fff; border-radius: 14px; padding: 20px 22px; box-shadow: 0 3px 12px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s; display: flex; align-items: center; }
    .fen-news-item:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.09); }
    .fen-news-link { font-size: 1rem; font-weight: 600; color: #1e2b37; text-decoration: none; line-height: 1.5; display: block; width: 100%; transition: color 0.2s; }
    .fen-news-link:hover { color: #2f7b9c; }
    .fen-news-link::before { content: ''; display: inline-block; width: 4px; height: 16px; background: #2f7b9c; border-radius: 2px; margin-right: 10px; vertical-align: middle; transition: background 0.2s; }
    .fen-news-item:hover .fen-news-link::before { background: #e8833a; }


    @media screen and (max-width: 900px) {
        .fen-navbar { padding: 0 16px; height: 64px; }
        body { padding-top: 74px; }
        .fen-menu a { padding: 8px 10px; font-size: 0.85rem; }
        .fen-menu a::after { left: 10px; right: 10px; bottom: 2px; }
        .fen-cta { padding: 10px 16px; font-size: 0.85rem; }
        .fen-logo-text { font-size: 1.05rem; }
        .fen-logo svg { width: 34px; height: 34px; }
        .fen-news-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    }
    @media screen and (max-width: 768px) {
        .fen-navbar { height: 60px; padding: 0 16px; }
        body { padding-top: 70px; }
        .fen-hamburger { display: flex; }
        .fen-menu {
            display: none;
            position: absolute;
            top: 100%; left: 0; right: 0;
            background: #fff;
            flex-direction: column;
            padding: 12px 20px 20px;
            border-bottom: 2px solid #e9edf2;
            box-shadow: 0 12px 28px rgba(0,0,0,0.10);
            border-radius: 0 0 18px 18px;
            gap: 2px;
            z-index: 999;
        }
        .fen-menu.fen-open { display: flex; }
        .fen-menu a { width: 100%; padding: 14px 16px; font-size: 1rem; border-radius: 10px; }
        .fen-menu a::after { display: none; }
        .fen-cta { padding: 10px 18px; font-size: 0.9rem; }
        .fen-nav-inner { position: relative; }
        .fen-news-grid { grid-template-columns: 1fr; gap: 14px; }
        .fen-news-section { margin: 30px -12px -30px; width: calc(100% + 24px); padding: 32px 16px 28px; }
        .fen-news-heading { font-size: 1.35rem; }
    }
    @media screen and (max-width: 480px) {
        .fen-navbar { padding: 0 12px; height: 56px; }
        body { padding-top: 66px; }
        .fen-logo svg { width: 30px; height: 30px; }
        .fen-logo-text { font-size: 0.95rem; }
        .fen-cta { padding: 8px 14px; font-size: 0.8rem; border-radius: 24px; }
        .fen-hamburger span { width: 22px; height: 2px; }
        .fen-hamburger { gap: 4px; }
        .fen-news-section { padding: 24px 12px 20px; }
        .fen-news-item { padding: 16px 18px; border-radius: 12px; }
    }
    

.ti-footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 48px 24px 20px;
    margin-top: 20px;
    font-family: inherit;
    color: #334155;
}


.ti-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

.ti-footer-item {
    min-width: 0;
}


.ti-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.ti-logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.ti-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.ti-brand-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    max-width: 320px;
}


.ti-footer-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 16px 0;
    letter-spacing: 0.01em;
}


.ti-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ti-link-list li {
    margin-bottom: 10px;
}
.ti-link-list a {
    text-decoration: none;
    color: #475569;
    font-size: 0.92rem;
    display: inline-block;
    padding: 2px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}
.ti-link-list a:hover {
    color: #2f7b9c;
    transform: translateX(4px);
}


.ti-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ti-contact-list li {
    font-size: 0.92rem;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}


.ti-footer-divider {
    max-width: 1200px;
    margin: 36px auto 0;
    border-top: 1px solid #e2e8f0;
}
.ti-footer-copyright {
    max-width: 1200px;
    margin: 16px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #94a3b8;
}
.ti-footer-icp {
    color: #94a3b8;
}


@media screen and (max-width: 768px) {
    .ti-footer {
        padding: 36px 18px 16px;
    }
    .ti-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ti-brand-desc {
        max-width: 100%;
    }
    .ti-footer-divider {
        margin-top: 28px;
    }
    .ti-footer-copyright {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .ti-footer {
        padding: 28px 14px 12px;
    }
    .ti-logo-icon {
        width: 28px;
        height: 28px;
    }
    .ti-brand-name {
        font-size: 1.15rem;
    }
    .ti-footer-title {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    .ti-link-list a,
    .ti-contact-list li {
        font-size: 0.88rem;
    }
}
    
