/*<style>*/
    /* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background-color: #f5f5f7;
    color: #333;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Style */
header {
    background-color: #ffffff;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eef0f4;
}

.sub-nav span {
    margin: 0 8px;
    color: #ccc;
}

.section-title .more-link {
    font-size: 13px;
    color: #0066ff;
    font-weight: normal;
}

/* Footer Styles */
footer {
    background-color: #f2f3f7;
    color: #a5a5a5;
    padding: 30px 16px;
    font-size: 12px;
    text-align: center;
}

.contact-us {
    margin-bottom: 24px;
}

.contact-title {
    font-size: 14px;
    font-weight: bold;
    color: #888;
    margin-bottom: 12px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon-btn img {
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.social-icon-btn img:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #888;
}

.footer-links a:hover {
    color: #bbb;
}

.footer-info {
    line-height: 2;
    color: #777;
}
/*</style>*/
