* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
        }

        body {
            background-color: #1b1e7f;  /* 靛蓝主色，贯穿全站 */
            color: #f5f0e6;
            line-height: 1.5;
            width: 100%;
            max-width: 100%;
        }
        a {
            color: #FFFFFF;
            text-decoration: none;
            transition: 0.2s;
        }
        a:hover {
            color: #e3342f;
            border-bottom-color: #e3342f;
        }
        a:active {
            color: #FFFFFF;
            text-decoration: none;
        }

        /* 手工纸张纹理叠加（轻微麻布感） */
        .page-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            background-color: #1b1e7f;
            background-image: radial-gradient(circle at 10% 20%, rgba(255,245,220,0.08) 1.2%, transparent 1.5%);
            background-size: 28px 28px;
            box-shadow: 0px 20px 40px 0 rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
            width: 100%;
            overflow-x: hidden;
        }

        /* 苗绣风格装饰带：红/白/靛蓝几何纹样（模仿苗绣中的锯齿纹、菱纹） */
        .embroidery-strip {
            background: url('../images/top_bg.webp') repeat-x;
            background-size: auto 100%;
            width: 100%;
        }random
        .top-strip {
            height: 0px;
            margin-bottom: 0;
        }
        .bottom-strip {
            height: 46.5px;
            background: url('../images/end_bg.webp') repeat-x;
            background-size: auto 100%;
        }

        /* 导航栏 */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            max-width: 1300px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0px 20px 40px 0 rgba(0, 0, 0, 0.2);
            background-color: rgba(27, 30, 127, 0.95);
            backdrop-filter: blur(10px);
            /* border-bottom: 1px solid rgba(245, 230, 200, 0.25); */
        }
        .logo-area {
            display: flex;
            align-items: baseline;
            gap: 1rem;
            flex-wrap: wrap;
        }
        /* 主logo：白色书法字 */
        .logo-chinese {
            font-size: 2.2rem;
            font-weight: 500;
            color: #ffffff;
            letter-spacing: 6px;
            line-height: 1;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
        }
        .logo-pinyin {
            font-size: 0.75rem;
            letter-spacing: 1px;
            color: #cfd4e8;
            border-left: 1px solid #e3342f;
            padding-left: 0.8rem;
            margin-left: 0.2rem;
        }
        /* 红色“药食同源” */
        .red-seal {
            font-size: 1rem;
            font-weight: 500;
            color: #e3342f;
            background: rgba(255,255,240,0.1);
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            letter-spacing: 3px;
            border: 1px solid #e3342f;
        }
        .nav-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            font-size: 1.1rem;
            font-weight: 600;
        }
        .nav-links a {
            color: #FFFFFF;
            text-decoration: none;
            transition: 0.2s;
            border-bottom: 1px solid transparent;
            padding: 6px 15px;
        }
        .nav-links a:hover {
            color: #e3342f;
            border-bottom-color: #e3342f;
        }
        .active {
            background-color: #ffffff20;
            border-radius: 10px;
        }

        /* 移动端菜单按钮 */
        .menu-toggle {
            display: none;
            cursor: pointer;
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
        }
        .menu-toggle span {
            display: block;
            width: 5px;
            height: 5px;
            background-color: #ffffff;
            margin: 5px 0;
            border-radius: 5px;
            transition: 0.3s;
        }

        /* 移动端侧边菜单 */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -280px;
            width: 280px;
            height: 100vh;
            background-color: #1b1e7f;
            z-index: 1001;
            transition: right 0.3s ease;
            box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        }
        .mobile-menu.active {
            right: 0;
        }
        /* 遮罩层 */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            z-index: 1000;
        }
        .mobile-menu.active + .mobile-menu-overlay {
            opacity: 1;
            visibility: visible;
        }
        .mobile-menu-content {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(245,230,200,0.2);
        }
        .mobile-logo {
            font-size: 1.5rem;
            font-weight: 500;
            color: #ffffff;
        }
        .close-menu {
            font-size: 2.5rem;
            color: #f5e6d3;
            cursor: pointer;
        }
        .mobile-nav-links {
            flex: 1;
            padding: 0rem 1.5rem;
            display: flex;
            flex-direction: column;
        }
        .mobile-nav-links a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(245,230,200,0.1);
            transition: 0.2s;
            text-align: center;
        }
        .mobile-nav-links a:hover {
            color: #e3342f;
            padding-left: 1rem;
        }
        .mobile-nav-links a.active {
            color: #e3342f;
            background-color: transparent;
        }

        /* 主视觉区 - 靛蓝底 + 苗族图腾装饰 */
        .hero {
            text-align: center;
            background: linear-gradient(145deg, #1b1e7a 0%, #1d2087 100%);
            margin: 0 1.5rem 1.5rem;
            position: relative;
        }
        /* 银饰圆点装饰（手工感） */
        .hero .silver-dots {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 0.8rem;
            letter-spacing: 6px;
            color: #c0c8e8;
            opacity: 0.5;
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: 500;
            color: #ffffff;
            letter-spacing: 8px;
            margin-bottom: 0.5rem;
        }
        .hero-pinyin {
            font-size: 1rem;
            color: #c7cdee;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }
        /* 红色药食同源大印章 */
        .hero-red {
            font-size: 2rem;
            font-weight: 500;
            color: #e3342f;
            display: inline-block;
            margin: 1rem 0 0.5rem;
            letter-spacing: 8px;
            border-top: 1px solid #e3342f;
            border-bottom: 1px solid #e3342f;
            padding: 0.4rem 1rem;
            background: rgba(0,0,0,0.15);
        }
        .hero p {
            max-width: 650px;
            margin: 1.5rem auto 0;
            color: #d9deef;
            font-size: 0.95rem;
        }

        /* 苗绣几何纹样装饰条（用于分隔） */
        .miao-pattern {
            height: 10px;
            background: repeating-linear-gradient(45deg, 
                #e3342f 0px, #e3342f 4px, 
                transparent 4px, transparent 12px,
                #f5e6d3 12px, #f5e6d3 16px,
                transparent 16px, transparent 24px);
            margin: 1rem 1.5rem;
        }

        /* 两栏故事卡片 - 深靛蓝底，红边 */
        .story-section {
            display: flex;
            flex-wrap: wrap;
            margin: 1.5rem;
            gap: 1.5rem;
        }
        .story-card {
            flex: 1;
            background: #151974;
            padding: 2rem 2rem;
            border-left: 4px solid #e3342f;
            transition: 0.2s;
        }
        .story-card h3 {
            font-size: 1.5rem;
            font-weight: 500;
            color: #f5e6d3;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }
        .story-card p {
            color: #cfd4e8;
            font-size: 0.92rem;
            line-height: 1.6;
        }
        .story-card .quote {
            font-style: italic;
            margin-top: 1rem;
            color: #e0b87a;
            font-size: 0.85rem;
        }

        /* 产品展示区 */
        .products {
            margin: 3rem 1.5rem;
        }
        .section-title {
            text-align: center;
            font-size: 1.9rem;
            font-weight: 400;
            /* letter-spacing: 4px; */
            color: #f5e6d3;
            margin-bottom: 2rem;
            position: relative;
        }
        .product-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }
        .product-item {
            background: #1b1f82;
            width: 30%;
            padding: 1.8rem 1.2rem;
            text-align: center;
            border: 1px solid #3a3f9c;
            transition: all 0.2s;
            position: relative;
        }
        /* 牛角抽象装饰 */
        .product-item:hover {
            border-color: #95eb68;
            transform: translateY(-3px);
        }
        .product-icon {
            font-size: 2.5rem;
            color: #e0b87a;
            margin-bottom: 1rem;
        }
        .product-item h4 {
            font-size: 1.4rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #f5e6d3;
        }
        .product-item p {
            font-size: 0.85rem;
            color: #c7cdee;
        }

        /* 门店样板 & 加盟 */
        .store-section {
            display: flex;
            flex-wrap: wrap;
            margin: 4rem 1.5rem;
            background: #13176b;
            padding: 2rem;
            gap: 0;
            align-items: center;
            border: 1px solid #2e3490;
            position: relative;
        }
        /* 苗族枫叶纹样 */
        .store-img {
            width: 50%;
            background-color: #0e1157;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .store-img span {
            color: #e0b87a;
            background: #1d2087cc;
            padding: 6px 14px;
            font-size: 1rem;
            border-left: 2px solid #e3342f;
        }
        .store-text {
            width: 50%;
            padding-left: 2rem;
        }
        .store-text h3 {
            font-size: 1.7rem;
            font-weight: 400;
            border-left: 3px solid #e3342f;
            padding-left: 1rem;
            margin-bottom: 1rem;
            color: #f5e6d3;
        }
        .btn-outline {
            display: inline-block;
            margin-top: 1.2rem;
            padding: 0.5rem 1.5rem;
            border: 1px solid #e3342f;
            background: none;
            color: #f5e6d3;
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 2px;
            transition: 0.2s;
        }
        .btn-outline:hover {
            color: #FFFFFF;
            background: #e3342f;
            border-color: #e3342f;
        }

        /* 苗医文化数据 */
        .culture {
            position: relative;
            margin: 2rem 1.5rem;
            overflow: hidden;
            height: 300px;
        }
        .culture-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 150%;
            background: url('../images/jd_bg.jpg') no-repeat center center;
            background-size: cover;
            will-change: transform;
        }
        .culture-content {
            position: relative;
            height: 100%;
            padding: 3rem 1.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: rgba(21, 25, 116, 0.6);
        }
        .culture-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
        }
        .culture-item {
            flex: 1;
            min-width: 140px;
        }
        .culture-item .num {
            font-size: 1.8rem;
            font-weight: 500;
            color: #95eb68;
        }

        /* 加盟入口 */
        .join {
            margin: 2rem 1.5rem 4rem;
            text-align: center;
            background: #151974;
            padding: 2rem;
            border: 1px solid #3a3f9c;
        }
        .join h2 {
            font-size: 1.7rem;
            font-weight: 400;
            color: #d0a268;
        }
        .btn-join {
            display: inline-block;
            margin-top: 1.5rem;
            background: none;
            border: 1px solid #e3342f;
            padding: 0.7rem 2rem;
            color: #f5e6d3;
            font-size: 0.95rem;
            letter-spacing: 3px;
            text-decoration: none;
            transition: 0.2s;
        }
        .btn-join:hover {
            background: #e3342f;
            border-color: #e3342f;
            color: #FFFFFF;
        }

        footer {
            text-align: center;
            padding: 1.8rem 0 1rem;
            /* border-top: 1px solid #2e3490; */
            font-size: 0.8rem;
            color: #a0a8d0;
            /* margin-bottom: 20px; */
            line-height: 2;
        }

@media (max-width: 780px) {
            .navbar {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
                text-align: center;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                width: 100%;
                padding: 1.3rem 1.5rem;
            }
            .page-wrapper {
                padding-top: 90px;
            }
            .miao-pattern {height:0;}
            .logo-area {
                width: 100%;
                display: flex;
                justify-content: flex-start;
            }
            .menu-toggle {
                display: block;
            }
            .nav-links {
                display: none;
            }
            .hero {
                margin: 0 1rem 1.5rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-red {
                font-size: 1.4rem;
                letter-spacing: 4px;
            }
            .store-section {
                flex-direction: column;
                padding: 1rem;
            }
            .store-img {
                width: 100%;
                height: 180px;
            }
            .store-text {
                width: 100%;
                padding-left: 0;
                padding-top: 1.5rem;
            }
            .story-section {
                flex-direction: column;
                margin: 1.5rem 1rem;
            }
            .story-card {
                width: 100%;
                flex: none;
                padding: 1.2rem;
            }
            .products {
            margin: 2rem 1rem;
            }
            .product-item {
                width: 47%;
                max-width: 300px;
                margin: 0 auto;
                padding: 1rem;
            }
            .product-grid {
                gap: 1rem;
            }
            .culture {
            height: 420px;
        }
            .culture-grid {
                gap: 0rem;
            }
            .join {
            margin: 2rem 1rem 3rem;
            }
            .join-page {
                padding: 0 1.5rem 2rem 1.5rem; 
            }
        }
        /* ====== 企业简介页面样式 ====== */
        .about-page {
            padding: 0 1.5rem;
        }

        .about-hero {
            position: relative;
            text-align: center;
            margin: 0 -1.5rem;
            margin-bottom: 2rem;
            padding: 3rem 1.5rem;
            overflow: hidden;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(21, 25, 116, 0.6);
            z-index: 1;
        }

        .about-hero h1,
        .about-hero .subtitle {
            position: relative;
            z-index: 2;
        }

        .about-hero h1 {
            font-size: 2rem;
            color: #fff;
            margin: 0;
            font-weight: bold;
            letter-spacing: 4px;
        }

        .about-hero .subtitle {
            color: #95eb68;
            margin-top: 0.8rem;
            font-size: 0.95rem;
            letter-spacing: 2px;
        }

        .about-section {
            margin-bottom: 3rem;
        }

        .section-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .section-title-wrapper h2 {
            font-size: 1.3rem;
            color: #fff;
            margin: 0;
            letter-spacing: 3px;
        }

        .section-icon {
            color: #ff6b6b;
            font-size: 0.8rem;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .about-text {
            color: #e0e0e0;
            line-height: 2;
            text-align: justify;
        }

        .about-text p {
            margin-bottom: 1rem;
            text-indent: 2em;
        }

        .about-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }

        .culture-section {
            background: rgba(255, 255, 255, 0.05);
            margin: 0 -1.5rem;
            margin-bottom: 3rem;
            padding: 2rem 1.5rem;
        }

        .culture-grid-about {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .culture-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .culture-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.8rem;
            color: #fff;
            font-size: 0.75rem;
            font-weight: bold;
        }

        .culture-card h3 {
            color: #fff;
            font-size: 0.9rem;
            margin: 0 0 0.5rem;
        }

        .culture-card p {
            color: #e0b87a;
            font-size: 0.8rem;
            margin: 0;
            line-height: 1.5;
        }

        .timeline {
            position: relative;
            padding-left: 2rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #ff6b6b, #ee5a24);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 4px;
            width: 16px;
            height: 16px;
            background: #ff6b6b;
            border-radius: 50%;
            border: 3px solid #1b1e7f;
        }

        .timeline-year {
            color: #e0b87a;
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .timeline-content h4 {
            color: #fff;
            margin: 0 0 0.3rem;
            font-size: 0.95rem;
        }

        .timeline-content p {
            color: #b0b0b0;
            margin: 0;
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .honors-section {
            border-radius: 12px;
        }

        .honors-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .honor-item {
            text-align: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
        }

        .honor-icon {
            color: #e0b87a;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .honor-item p {
            color: #e0e0e0;
            font-size: 0.75rem;
            margin: 0;
            line-height: 1.4;
        }

        .team-grid {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .team-member {
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
        }

        .team-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1e238c, #2d32a8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .avatar-text {
            color: #fff;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .team-member h4 {
            color: #fff;
            margin: 0 0 0.3rem;
            font-size: 1rem;
        }

        .team-title {
            color: #e0b87a;
            font-size: 0.85rem;
            margin: 0 0 0.5rem;
        }

        .team-desc {
            color: #b0b0b0;
            font-size: 0.8rem;
            margin: 0;
            line-height: 1.5;
        }

        @media (min-width: 780px) {
            .about-page {
                padding: 0 3rem;
            }

            .about-hero {
                margin: 0 -3rem;
                margin-bottom: 1.5rem;
                padding: 4rem 3rem;
            }

            .about-hero h1 {
                font-size: 2.5rem;
            }

            .about-content {
                flex-direction: row;
                gap: 3rem;
            }

            .about-text {
                flex: 1;
            }

            .about-image {
                flex: 0.8;
            }

            .about-image img {
                height: 280px;
            }

            .culture-section {
                margin: 0 -3rem;
                margin-bottom: 3rem;
                padding: 3rem;
            }

            .culture-grid-about {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }

            .culture-card {
                padding: 1.5rem;
            }

            .timeline {
                padding-left: 3rem;
            }

            .timeline::before {
                left: 14px;
            }

            .timeline-item {
                padding-left: 2rem;
                margin-bottom: 2rem;
            }

            .timeline-item::before {
                left: -3rem;
                width: 20px;
                height: 20px;
            }

            .honors-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .team-grid {
                flex-direction: row;
                justify-content: center;
                gap: 2rem;
            }

            .team-member {
                width: 280px;
            }
        }

        /* ====== 专家团队页面样式 ====== */
        .team-intro {
            text-align: center;
            margin-bottom: 3rem;
        }

        .team-intro p {
            font-size: 1.1rem;
            color: #e0b87a;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .team-section {
            margin-bottom: 3rem;
        }

        .team-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .team-card.featured {
            background: linear-gradient(135deg, rgba(27, 30, 127, 0.8) 0%, rgba(30, 35, 140, 0.8) 100%);
        }

        .team-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1rem;
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-avatar-large {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.5rem;
        }

        .team-avatar-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-info {
            text-align: center;
        }

        .team-info h3 {
            color: #fff;
            font-size: 1.2rem;
            margin: 0 0 0.5rem;
            font-weight: bold;
        }

        .team-title {
            color: #e0b87a;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }

        .team-tags {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .team-tags li {
            color: #e0e0e0;
            font-size: 1rem;
            line-height: 1.6;
            padding: 0.3rem 0;
        }

        .team-desc {
            color: #b0b0b0;
            font-size: 0.85rem;
            line-height: 1.6;
            margin-top: 1rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1rem;
        }

        .team-gallery {
            margin-top: 3rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem;
        }

        .gallery-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
        }

        @media (min-width: 780px) {
            .team-intro p {
                font-size: 1.3rem;
            }

            .team-card.featured {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 3rem;
                padding: 2rem;
            }

            .team-card.featured .team-avatar-large {
                margin: 0;
                flex-shrink: 0;
            }

            .team-card.featured .team-info {
                text-align: left;
            }

            .team-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .gallery-item img {
                height: 200px;
            }
        }

        /* ====== 产品介绍页面样式 ====== */
        .product-categories {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem;
            margin-bottom: 2rem;
        }

        .category-btn {
            padding: 0.6rem 1.2rem;
            border: 1px solid rgba(0, 255, 22, 0.5);
            background: transparent;
            color: #95eb68;
            border-radius: 20px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .category-btn:hover,
        .category-btn.active {
            background: rgba(0, 255, 22, 0.2);
            border-color: #95eb68;
        }

        .product-section {
            margin-bottom: 3rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            width: 100%;
            height: 170px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info {
            padding: 1rem 0.5rem;
        }

        .product-info h3 {
            color: #fff;
            font-size: 1rem;
            margin: 0 0 0.5rem;
            font-weight: bold;
        }

        .product-desc {
            color: #b0b0b0;
            font-size: 0.8rem;
            margin: 0 0 0.8rem;
            line-height: 1.4;
        }

        .product-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .product-tags span {
            padding: 0.2rem 0.6rem;
            background: rgba(0, 255, 22, 0.2);
            color: #95eb68;
            border-radius: 10px;
            font-size: 0.7rem;
        }

        .product-philosophy {
            background: rgba(255, 255, 255, 0.03);
            padding: 2rem;
            border-radius: 12px;
        }

        .philosophy-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .philosophy-item {
            display: flex;
            gap: 0.8rem;
            align-items: flex-start;
        }

        .philosophy-icon {
            color: #e0b87a;
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .philosophy-item p {
            color: #e0e0e0;
            font-size: 0.85rem;
            line-height: 1.5;
            margin: 0;
        }

        .philosophy-item strong {
            color: #fff;
        }

        @media (min-width: 780px) {
            .product-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }

            .product-image {
                height: 280px;
            }

            .philosophy-content {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* ====== 分页样式 ====== */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.8rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .page-btn {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(0, 255, 22, 0.5);
            background: transparent;
            color: #95eb68;
            border-radius: 50%;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .page-btn:hover:not(:disabled) {
            background: rgba(0, 255, 22, 0.2);
        }

        .page-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .page-numbers {
            display: flex;
            gap: 0.5rem;
        }

        .page-number {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0, 255, 22, 0.3);
            color: #95eb68;
            border-radius: 50%;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .page-number:hover,
        .page-number.active {
            background: rgba(0, 255, 22, 0.3);
            border-color: #95eb68;
        }

        /* 产品链接样式 */
        .product-link {
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .product-link:hover .product-card {
            transform: translateY(-5px);
        }

        /* ========== 产品详情页样式 ========== */
        .product-show-page {
            padding: 0rem 1rem;
        }

        /* 面包屑导航 */
        .breadcrumb {
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
            color: #888;
        }

        .breadcrumb a {
            color: #e0b87a;
            text-decoration: none;
        }

        .breadcrumb span {
            margin: 0 0.5rem;
        }

        /* PC端左右布局 */
        .product-show-wrapper {
            display: grid;
            gap: 2rem;
        }

        /* 左侧产品信息区 */
        .product-left-section {
            order: 1;
        }

        .product-gallery {
            margin-bottom: 1.5rem;
        }

        .product-main-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 1rem;
        }

        .product-main-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .product-thumbs {
            display: flex;
            gap: 0.8rem;
            justify-content: center;
        }

        .product-thumb {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-thumb:hover,
        .product-thumb.active {
            border-color: #e0b87a;
        }

        .product-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 产品快速信息 */
        .product-quick-info {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .product-quick-info h1 {
            font-size: 1.5rem;
            color: #fff;
            margin: 0 0 0.5rem;
            letter-spacing: 2px;
        }

        .product-subtitle {
            color: #e0b87a;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }

        .product-price {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .price-label {
            color: #888;
            font-size: 0.85rem;
        }

        .price-value {
            color: #ff6b6b;
            font-size: 1.8rem;
            font-weight: bold;
        }

        .price-unit {
            color: #888;
            font-size: 0.85rem;
        }

        .product-tags-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }

        .product-tags-row span {
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.75rem;
            border: 1px solid rgba(0, 255, 22, 0.3);
            background: rgba(0, 255, 22, 0.2);
            color: #95eb68;
        }

        /* 购买操作区 */
        .product-action-box {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            text-align: center;
        }

        .product-action-box p {
            color: #e0e0e0;
            font-size: 0.85rem;
            margin: 0 0 1rem;
        }

        .btn-primary {
            display: block;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: #fff;
            border-radius: 8px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-bottom: 0.8rem;
            text-align: center;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
        }

        .btn-secondary {
            display: block;
            width: 100%;
            padding: 0.8rem;
            background: transparent;
            color: #e0b87a;
            border-radius: 8px;
            text-decoration: none;
            font-size: 0.9rem;
            border: 1px solid #e0b87a;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-secondary:hover {
            background: rgba(255, 215, 0, 0.1);
        }

        /* 右侧详情长图区 */
        .product-right-section {
            order: 2;
        }

        .detail-section-title {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .detail-section-title::before {
            content: '';
            width: 4px;
            height: 24px;
            background: linear-gradient(180deg, #ff6b6b, #ee5a24);
            border-radius: 2px;
        }

        .detail-section-title h2 {
            color: #fff;
            font-size: 1.1rem;
            margin: 0;
        }

        .product-detail-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .product-detail-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 产品特点横向展示 */
        .product-features-bar {
            margin: 1.5rem 0;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
        }

        .feature-bar-item {
            text-align: center;
        }

        .feature-bar-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.8rem;
            color: #fff;
            font-size: 0.8rem;
        }

        .feature-bar-item h4 {
            color: #fff;
            font-size: 0.85rem;
            margin: 0 0 0.3rem;
        }

        .feature-bar-item p {
            color: #888;
            font-size: 0.7rem;
            margin: 0;
        }

        /* 相关推荐 */
        .related-products {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .related-title {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .related-title h3 {
            color: #e0b87a;
            font-size: 1.1rem;
            margin: 0;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .related-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .related-item:hover {
            transform: translateY(-3px);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .related-item img {
            width: 100%;
            object-fit: cover;
        }

        .related-item p {
            color: #fff;
            font-size: 0.8rem;
            margin: 0;
            padding: 0.8rem;
            text-align: center;
        }

        /* PC端布局 */
        @media (min-width: 780px) {
            .product-show-page {
                padding: 0 3rem;
                max-width: 1400px;
                margin: 0 auto;
            }

            .product-show-wrapper {
                display: flex;
                gap: 3rem;
                position: relative;
            }

            .product-left-section {
                flex: 0 0 380px;
            }

            .product-right-section {
                flex: 1;
                min-width: 0;
            }

            .product-thumbs {
                justify-content: flex-start;
            }

            .product-quick-info h1 {
                font-size: 1.8rem;
            }

            .related-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* 移动端调整 */
        @media (max-width: 779px) {
            .product-features-bar {
                grid-template-columns: repeat(2, 1fr);
                padding: 1rem;
            }

            .feature-bar-icon {
                width: 40px;
                height: 40px;
                font-size: 0.7rem;
            }
        }

        /* ========== 加盟条件页面样式 ========== */
        .join-page {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 加盟介绍 */
        .join-intro {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
        }

        .join-intro h2 {
            color: #e0b87a;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .join-intro p {
            color: #e0e0e0;
            font-size: 1rem;
            line-height: 1.8;
            margin: 0;
        }

        /* 加盟等级卡片 */
        .join-levels {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .join-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .join-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 255, 22, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .join-card-header {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .member .join-card-header {
            background: linear-gradient(135deg, rgba(100, 149, 237, 0.2) 0%, rgba(65, 105, 225, 0.2) 100%);
        }

        .vip .join-card-header {
            background: #3441ab;
        }

        .partner .join-card-header {
            background: #3a48bd;
        }

        .agent .join-card-header {
            background: #4554cb;
        }

        .join-badge {
            display: inline-block;
            padding: 0.3rem 1rem;
            background: rgba(100, 149, 237, 0.3);
            color: #6495ed;
            border-radius: 15px;
            font-size: 1rem;
        }

        .vip-badge {
            color: #ffffff;
        }

        .partner-badge {
            background: rgba(255, 230, 0, 0.3);
            color: #e0b87a;
        }

        .agent-badge {
            background: rgba(30, 255, 0, 0.3);
            color: #95eb68;
        }

        .join-price {
            display: flex;
            align-items: baseline;
            justify-content: flex-end;
            gap: 0.2rem;
        }

        .price-symbol {
            color: #888;
            font-size: 1rem;
        }

        .price-value {
            color: #e0b87a;
            font-size: 2.2rem;
            font-weight: bold;
        }

        .price-unit {
            color: #888;
            font-size: 0.9rem;
        }

        .join-card-body {
            padding: 1rem;
        }

        .join-card-body ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .join-card-body li {
            color: #e0e0e0;
            font-size: 0.85rem;
            padding: 0.5rem 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
        }

        .join-card-body li:last-child {
            border-bottom: none;
        }

        .join-card-body li strong {
            color: #e0b87a;
        }

        .contact-tip {
            margin-top: 1rem;
            padding: 0.8rem;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 8px;
            color: #e0b87a;
            font-size: 0.8rem;
            text-align: center;
        }

        .join-card-footer {
            padding: 0rem 0rem 2rem;
            /*border-top: 1px solid rgba(255, 255, 255, 0.1);*/
        }

        .join-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .join-buttons .join-btn {
            flex: 1;
            width: auto;
        }

        .join-btn {
            display: block;
            width: 100%;
            padding: 0.8rem;
            background: rgba(0, 255, 22, 0.4);
            color: #95eb68;
            border: 1px solid rgba(0, 255, 22, 0.2);
            border-radius: 8px;
            text-decoration: none;
            text-align: center;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .join-btn:hover {
            background: rgba(0, 255, 22, 0.5);
        }

        .join-btn.primary {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: #fff;
            border: none;
        }

        .join-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
        }

        /* 加盟优势 */
        .join-advantages {
            margin-bottom: 3rem;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .advantage-item {
            background: rgba(255, 255, 255, 0.03);
            padding: 1.2rem;
            border-radius: 10px;
            text-align: center;
        }

        .advantage-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #6495ed, #4169e1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.8rem;
            color: #fff;
            font-size: 0.9rem;
        }

        .advantage-item h4 {
            color: #fff;
            font-size: 0.9rem;
            margin: 0 0 0.4rem;
        }

        .advantage-item p {
            color: #888;
            font-size: 0.8rem;
            margin: 0;
            line-height: 1.5;
        }

        /* 联系咨询 */
        .join-contact {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
            border-radius: 12px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .join-contact h3 {
            color: #e0b87a;
            font-size: 1.2rem;
            margin: 0 0 0.8rem;
        }

        .join-contact p {
            color: #e0e0e0;
            font-size: 0.9rem;
            margin: 0 0 1.5rem;
        }

        .contact-methods {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .contact-icon {
            font-size: 1.2rem;
        }

        /* PC端布局 */
        @media (min-width: 780px) {

            .join-levels {
                grid-template-columns: repeat(4, 1fr);
            }

            .advantages-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .join-intro p {
                font-size: 1.1rem;
            }
        }

        /* ========== 联系我们页面样式 ========== */
        .contact-page {
            padding: 0rem 1.5rem;
            margin: 0 auto;
        }

        /* 联系信息卡片 - 移动端单列布局 */
        .contact-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .contact-card {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-icon-wrapper {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon {
            font-size: 1.5rem;
        }

        .contact-info h3 {
            color: #e0b87a;
            font-size: 1rem;
            margin: 0 0 0.3rem;
        }

        .contact-info p {
            color: #e0e0e0;
            font-size: 0.9rem;
            margin: 0;
        }

        .contact-phone {
            color: #FFFFFF;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
        }

        .contact-phone:hover {
            text-decoration: underline;
        }

        /* 微信二维码 */
        .contact-qrcode {
            text-align: center;
            margin-bottom: 2rem;
        }

        .qrcode-wrapper {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }

        .qrcode-wrapper img {
            width: 200px;
            height: 200px;
            border-radius: 8px;
        }

        .qrcode-label {
            margin-top: 1rem;
        }

        .qrcode-label p {
            color: #fff;
            font-size: 0.95rem;
        }

        .qrcode-sub {
            color: #888 !important;
            font-size: 0.8rem !important;
        }


        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .hour-item {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
        }

        .hour-item .day {
            color: #e0e0e0;
        }

        .hour-item .time {
            color: #888;
        }

        /* 联系表单 */
        .contact-form-section {
            margin-bottom: 2rem;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* 下方内容区域 */
        .contact-bottom {
            margin-top: 1rem;
        }

        .form-row {
            display: flex;
            gap: 1rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #fff;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #e0b87a;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #666;
        }

        .contact-form textarea {
            resize: none;
            margin-bottom: 0;
            width: calc(75% - 10px);
        }

        .captcha-group {
            width: 25%;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .captcha-group input {
            margin-bottom: 0 !important;
        }

        .captcha-img {
            max-width: 100%;
            height: 48px;
            border-radius: 8px;
            cursor: pointer;
        }

        .form-row-flex textarea {
            width: 75% !important;
        }

        .form-row-flex .captcha-group {
            width: 25%;
        }

        .submit-btn {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
        }

        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .hour-item {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
        }

        .hour-item:last-child {
            border-bottom: none;
            gap: 1rem;
        }

        .hour-item .day {
            color: #e0e0e0;
            font-size: 0.9rem;
        }

        .hour-item .time {
            color: #888;
            font-size: 0.9rem;
        }

        /* PC端布局 */
        @media (min-width: 780px) {
            .contact-page {
                padding: 0 3rem 3rem;
            }

            /* 联系信息三列均分 */
            .contact-cards {
                grid-template-columns: repeat(3, 1fr);
            }

            .contact-card {
                padding: 1.5rem;
                flex-direction: column;
                text-align: center;
            }

            .contact-info h3 {
                font-size: 1rem;
                margin-bottom: 0.5rem;
            }

            .contact-info p {
                font-size: 0.85rem;
            }

            .contact-phone {
                font-size: 1rem;
            }

            /* 下方内容：左侧二维码，右侧表单 */
            .contact-bottom {
                display: grid;
                grid-template-columns: 1fr 2fr;
                gap: 1rem;
            }

            .contact-qrcode {
                margin-bottom: 0;
                width: 380px;
            }

            .qrcode-wrapper {
                display: block;
            }

            .qrcode-wrapper img {
                width: 220px;
                height: 220px;
            }

            .contact-form-section {
                margin-bottom: 0;
            }

            .contact-form {
                padding: 1.5rem;
                height: fit-content;
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
            }

        }
