@import url("topheader.css"); 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #f5f6fa;
        }

        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            min-height: calc(100vh - 60px - 50px);
            display: flex;
            padding: 20px;
            gap: 20px;
        }

        /* 綏�唱莨号��垸� */
        .sidebar {
            width: 240px;
            flex-shrink: 0;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .sidebar-header {
            padding: 20px;
            background: #f5e6d3;
            color: #ff6b35;
            text-align: center;
        }

        .sidebar-header h3 {
            font-size: 18px;
            font-weight: 500;
            margin: 0;
        }

        .sidebar-nav {
            padding: 10px 0;
        }

        .nav-item-l {
            display: block;
            padding: 14px 24px;
            color: #ff6b35;
            text-decoration: none;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            /*border-left: 3px solid transparent;*/
            position: relative;
        }

        .nav-item-l:hover {
            background-color: rgba(44, 98, 128, 0.08);
            color: #ff6b35;
        }

        .nav-item-l.active {
            background-color: rgba(44, 98, 128, 0.08);
            color: #ff6b35;
            border-left-color: #ff6b35;
            font-weight: 500;
        }

        .nav-item-l::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: transparent;
            transition: all 0.3s ease;
        }

        .nav-item-l.active::before {
            background: #ff6b35;
        }

        /* �割唱��絎劫�堺�桁� */
        .content-area {
            flex: 1;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .content-panel {
            padding: 30px 40px;
            display: none;
        }

        .content-panel.active {
            display: block;
        }

        .content-title {
            font-size: 24px;
            color: #ff6b35;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e8f0fe;
            font-weight: 600;
        }

        .content-text {
            font-size: 15px;
            line-height: 1.8;
            color: #444;
            text-align: justify;
        }

        .content-text p {
            margin-bottom: 16px;
            text-indent: 2em;
        }

        .content-text strong {
            color: #5a6e7c;
            font-weight: 600;
        }

        .highlight-box {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
            border-left: 4px solid #5a6e7c;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }

        .highlight-box p {
            margin: 0;
            text-indent: 0;
            color: #1a1a1a;
        }

        .service-list {
            margin: 20px 0;
            padding: 0;
            list-style: none;
        }

        .service-list li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            border-bottom: 1px dashed #e8f0fe;
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li::before {
            content: '��';
            position: absolute;
            left: 0;
            color: #5a6e7c;
            font-weight: bold;
        }

        .contact-info {
            background: #f8f9ff;
            border-radius: 8px;
            padding: 25px;
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e8f0fe;
        }

        .contact-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .contact-label {
            font-weight: 600;
            color: #1a1a1a;
            width: 80px;
            flex-shrink: 0;
        }

        .contact-value {
            color: #555;
            flex: 1;
        }

        /* ��綺�綣顒乗� */
        @media screen and (max-width: 768px) {
            .main-container {
                flex-direction: column;
                padding: 10px;
            }

            .sidebar {
                width: 100%;
            }

            .sidebar-nav {
                display: flex;
                flex-wrap: wrap;
                padding: 5px;
            }

            .nav-item-l {
                flex: 1;
                min-width: 50%;
                text-align: center;
                padding: 12px;
                border-left: none;
                border-bottom: 2px solid transparent;
            }

            .nav-item-l.active {
                border-left: none;
                border-bottom-color: #5a6e7c;
            }

            .content-panel {
                padding: 20px;
            }
        }


@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
        padding: 1.5rem 0;
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 10px 18px;
        justify-content: center;
    }

    .footer-links a {
        font-size: 12px;
    }

    /* 筝糸��絎劫�� */
    .main-container {
        padding: 10px;
        gap: 10px;
    }

    .sidebar {
        width: 100%;
    }

    .sidebar-nav {
        display: flex;
        flex-wrap: wrap;
        padding: 4px;
        gap: 4px;
    }

    .nav-item-l {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
        text-align: center;
        padding: 10px 6px;
        font-size: 12px;
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 6px;
    }

    .nav-item-l.active {
        border-left: none;
        border-bottom-color: #5a6e7c;
        background: #e8f0fe;
    }

    .nav-item-l:hover {
        background-color: #f0f4ff;
    }

    /* ��絎劫�� */
    .content-panel {
        padding: 14px;
    }

    .content-title {
        font-size: 16px;
    }

    .content-text {
        font-size: 12px;
    }

    .content-text p {
        margin-bottom: 8px;
    }

    /* 蕁級�∽��蘂��� */
    .page-header {
        padding: 20px 0;
        border-radius: 8px;
    }

    .page-header h1 {
        font-size: 1.2rem;
    }

    .page-header p {
        font-size: 0.72rem;
    }
}

/* ���� ���榊� 550px ���� */
@media (max-width: 550px) {
    /* ���镾��∝�絲取����丞ず腱糸����������� */
    .navbar {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* 臀��弱失�九���� */
    .brand-category-grid,
    .featured-grid,
    .rank-cards-container {
        grid-template-columns: 1fr !important;
    }

    /* 蕁級�∽��蘂��肴�筝�罩ョ而絨� */
    .page-header {
        padding: 16px 0;
    }

    .page-header h1 {
        font-size: 1.05rem;
    }

    .page-header p {
        font-size: 0.68rem;
    }

    /* 箴ф�鎛取������膾球������ */
    .sidebar-nav {
        flex-direction: column;
    }

    .nav-item-l {
        flex: none;
        width: 100%;
        border-bottom: 1px solid #eef2f8;
        border-left: 3px solid transparent !important;
        border-radius: 0;
        padding: 10px 14px;
        text-align: left;
    }

    .nav-item-l.active {
        border-bottom: 1px solid #eef2f8;
        border-left: 3px solid #5a6e7c !important;
        background: #e8f0fe;
    }

    /* ��絎劫�阪��莨壕� */
    .content-panel {
        padding: 12px 10px;
    }

    .content-title {
        font-size: 15px;
    }

    /* 蕁笈���丈･�頑� */
    .footer-links {
        gap: 8px 12px;
    }
}
       
       

        

         /* 蕁級�∽��蘂��� */
        .page-header {
              background: linear-gradient(135deg, #fef6f0 0%, #fdf2e9 50%, #f5e6d3 100%);
            border-radius: 12px;
            padding: 50px 0;
            text-align: center;
            color: #ff6b35;
            position: relative;
            overflow: hidden;
            max-width: 1352px;
            margin: 0 auto;
        }

        .page-header .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #fef6f0 0%, #fdf2e9 50%, #f5e6d3 100%);
        }

        .page-header h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            position: relative;
        }

        .page-header p {
            font-size: 1rem;
            opacity: 0.9;
            position: relative;
        }

  /* 綺��� */
        /*.footer {*/
        /*     max-width: 1350px;*/
        /*    margin: 0 auto;*/
        /*    background: #f5f6f8;*/
        /*    padding: 30px 0;*/
        /*    margin-top: 40px;*/
        /*    border-top: 1px solid #eee;*/
        /*}*/

        /*.footer .container {*/
        /*    display: flex;*/
        /*    justify-content: space-between;*/
        /*    align-items: center;*/
        /*}*/

        /*.footer-col .logo {*/
        /*    font-size: 1.1rem;*/
        /*    margin-bottom: 8px;*/
        /*}*/

        /*.footer-col p {*/
        /*    color: #999;*/
        /*    font-size: 13px;*/
        /*}*/

        /*.footer-links {*/
        /*    display: flex;*/
        /*    gap: 20px;*/
        /*}*/

        /*.footer-links a {*/
        /*    color: #666;*/
        /*    text-decoration: none;*/
        /*    font-size: 13px;*/
        /*    transition: color 0.3s;*/
        /*}*/

        /*.footer-links a:hover {*/
        /*    color: #5a7388;*/
        /*}*/
        .footer {
               max-width: 1400px;
              margin: 0 auto;
            margin-top: 3rem;
            padding: 2rem 0 3rem;
            border-top: 1px solid #eef2f8;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-col p {
            color: #8aa2b8;
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        .footer-links a {
            text-decoration: none;
            color: #5a6e7c;
            font-size: 0.8rem;
        }
        
   