/* ============================================
   全局样式与变量 - 合并自 bj.css 和 he.css
   ============================================ */
:root {
    --primary: #0067e6;
    --secondary: #2c3e50;
    --accent: #e74c3c;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gray: #6c757d;
    --hot: #e74c3c;
    --new: #2ecc71;
    /* he.css 变量 - 采用主色保持统一，部分沿用原有语义 */
    --primary-color: #2c3e50;
    --secondary-color: #f8f9fa;
    --accent-color: #e67e22;
    --text-color: #333333;
    --light-text: #666666;
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f5f7f9;
}

.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== 导航栏 ========== */
header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

header.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 10px;
    margin-top: 10px;
    width: 260px;
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin-left: auto;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover:after, .nav-menu a.active:after {
    width: 100%;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
}

.consult-btn {
    background: var(--accent);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.consult-btn i {
    margin-right: 8px;
}

.consult-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pulse-btn {
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.pulse-btn:hover {
    animation: none;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-left: 5px;
}

.phone-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.phone-link:hover {
    color: var(--accent);
}

/* ========== 轮播Banner ========== */
.hero-slider {
    position: relative;
    margin-top: 80px;
    height: 410px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 850px;
    padding: 0 20px;
    z-index: 2;
}

.hero-slide h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-slide p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero-slide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

/* ========== 通用按钮 & 标题 ========== */
.btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn i {
    margin-right: 8px;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--secondary);
}

/* 标题样式 - 统一使用 section-title-he (橙色下划线风格) */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-he {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding-bottom: 0;
}
.section-title-he::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 800px;
    margin: 25px auto 0;
    font-size: 1.2rem;
}

/* 解决方案区域的标题无额外下划线，统一风格 */
.solutions .section-title .section-title-heading,
.solutions .section-title .section-title-he {
    /* 完全统一 */
}
/* 原有的 .section-title-heading 备用 */
.section-title-heading {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: bold;
}
.section-title-heading:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

section {
    padding: 65px 0;
}

/* ========== 应用场景 ========== */
.scenarios { background: white; }
.scenario-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}
.scenario-tab {
    padding: 14px 30px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}
.scenario-tab.active, .scenario-tab:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.scenario-content { display: none; }
.scenario-content.active { display: block; }
.scenario-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.scenario-header {
    background: var(--primary);
    color: white;
    padding: 25px 20px;
}
.scenario-body {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}
.scenario-image {
    flex: 1;
    min-width: 560px;
    background-color: #f5f5f5;
    background-position: center;
    background-size: cover;
    border-radius: 8px;
    margin-right: 30px;
}
.scenario-details { flex: 2; min-width: 300px; }
.scenario-feature { margin-bottom: 25px; }
.scenario-feature h4 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}
.scenario-feature h4 i { color: var(--primary); margin-right: 10px; }

/* ========== 产品中心 ========== */
.products { background: var(--light); }
.product-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}
.product-tab {
    padding: 14px 30px;
    background: white;
    border: 2px solid transparent;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.product-tab.active, .product-tab:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    border: 1px solid var(--border-color);
}
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}
.product-image { height: 220px; background-color: #f5f5f5; position: relative; display: flex; align-items: center; justify-content: center; }
.product-image img { max-width: 90%; max-height: 180px; object-fit: contain; }
.product-label {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    z-index: 2;
}
.label-hot { background: var(--hot); color: white; }
.label-new { background: var(--new); color: white; }
.product-content { padding: 25px; text-align: center; }
.product-content h2 { color: var(--secondary); font-size: 1.4rem; margin-bottom: 8px;}
.product-hover-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(52, 152, 219, 0.97);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 30px;
    text-align: center;
}
.product-card:hover .product-hover-content { opacity: 1; }
.product-hover-content h3 { color: white; margin-bottom: 15px; }
.specs { margin: 20px 0; text-align: left; }
.specs div { margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }

/* ========== 功能优势 ========== */
.advantages { background: white; }
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}
.advantage-card {
    text-align: center;
    padding: 45px 30px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}
.advantage-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.advantage-icon { margin-bottom: 20px; }
.advantage-card h3 { margin-bottom: 20px; color: var(--secondary); }

/* ========== 解决方案卡片（用于即时办公等） ========== */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.challenge-card {
    background: white;
    padding: 28px 30px 24px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid var(--border-color);
}
.challenge-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,0,0,0.1); }
.challenge-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.challenge-icon { font-size: 24px; color: var(--primary); }
.challenge-header h3 { font-size: 1.25rem; color: var(--secondary); margin: 0; }
.challenge-desc { font-size: 0.95rem; color: var(--gray); margin-bottom: 14px; line-height: 1.5; }

/* 解决方案卡片 - 两列布局（新增） */
.challenge-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.challenge-points {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.challenge-points li {
    display: flex;
    align-items: baseline;
    font-size: 0.9rem;
    padding: 4px 0;
    gap: 8px;
}

.challenge-points li i {
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.card-link-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    background: transparent;
    padding: 0;
}

/* ========== 成功案例 ========== */
.stories { background: white; }
.industry-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}
.industry-tab {
    padding: 14px 30px;
    background: var(--light);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.industry-tab.active, .industry-tab:hover {
    background: var(--primary);
    color: white;
}
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}
.story-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    position: relative;
}
.story-card:hover { transform: translateY(-8px); box-shadow: 0 20px 35px rgba(0,0,0,0.12); }
.story-image img { width: 100%; height: 200px; object-fit: cover; display: block; }
.story-content { padding: 25px; }
.story-stats { display: flex; justify-content: space-around; margin: 15px 0; }
.stat { text-align: center; }
.stat-value { font-size: 1.6rem; font-weight: bold; color: var(--primary); }
.stat-label { font-size: 0.85rem; color: var(--gray); }
.story-hover-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(52, 152, 219, 0.95);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 30px;
    text-align: center;
}
.story-card:hover .story-hover-content { opacity: 1; }
.story-testimonial { font-style: italic; margin-bottom: 25px; line-height: 1.6; }

/* ========== 公司介绍 ========== */
.company-intro { padding: 80px 0; background: #fff; }
.intro-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}
.intro-image { flex: 1; border-radius: 16px; overflow: hidden; }
.intro-image img { width: 100%; height: auto; display: block; }
.intro-text { flex: 1; }
.intro-text h2 {
    font-size: 32px;
    color: #1a2c3e;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}
.intro-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

/* ========== 试用 & CTA ========== */
.cta { background: var(--secondary); color: white; padding: 60px 0; text-align: center; }
.trial { background: var(--secondary); color: white; padding: 80px 0; text-align: center; }
.simplified-solutions { background-color: var(--secondary-color); padding: 60px 0; }
.solutions-content h3 { color: var(--primary-color); font-size: 24px; margin-bottom: 30px; }
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.solution-item {
    background: white;
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.solution-item i { color: var(--accent-color); font-size: 20px; }

/* ========== 资讯区域 ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.news-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 24px;
    transition: all 0.3s;
}
.news-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.news-title { font-size: 17px; color: var(--primary-color); line-height: 1.5; margin-bottom: 12px; font-weight: 500; }
.news-time { font-size: 14px; color: var(--light-text); display: flex; align-items: center; gap: 6px; }

/* ========== 页脚/底部 ========== */
footer { background: var(--dark); color: white; padding: 70px 0 40px; }
.gzfull-contact { padding: 100px 0; background: #e6e6e6; }
.gzfull-contact .msg { width: 62%; display: table-cell; vertical-align: middle; }
.gzfull-contact .msg h4 { margin-bottom: 6px; font-size: 24px; color: var(--primary); }
.gzfull-contact .msg .tel a { font-size: 28px; color: #494949; text-decoration: none; }
.gzfull-contact .ctrl { width: 38%; display: table-cell; vertical-align: middle; }
.full-foot-bottom { padding: 28px 0 34px; background: var(--secondary); color: #ccc; text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; }
.z-introduce { display: flex; justify-content: space-between; margin-bottom: 40px; }
.z-font72 { font-size: 72px; font-weight: bold; line-height: 1; }
.z-font15 { display: flex; flex-direction: column; justify-content: center; margin-left: 20px; }

/* ========== 底部联系区域 (gzfull-contact) ========== */
.gzfull-contact {
    padding: 100px 0;
    background: #e6e6e6;
}

.gzfull-contact .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.gzfull-contact .msg {
    width: 62%;
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    line-height: 24px;
    color: #494949;
}

.gzfull-contact .msg h3 {
    margin-bottom: 23px;
    font-size: 36px;
    line-height: 1;
    color: #0067e6;
}

.gzfull-contact .msg h4 {
    margin-bottom: 6px;
    font-size: 24px;
    line-height: 32px;
    color: #0067e6;
}

.gzfull-contact .msg p {
    line-height: 28px;
    margin-top: 8px;
}

.gzfull-contact .msg .tel {
    padding-top: 20px;
    font-size: 14px;
}

.gzfull-contact .msg .tel a {
    font-size: 28px;
    line-height: 24px;
    color: #494949;
    text-decoration: none;
}

.gzfull-contact .ctrl {
    width: 38%;
    display: table-cell;
    vertical-align: middle;
}

.gzfull-contact .ctrl dl {
    display: flex;
    align-items: flex-start;
    margin-top: 6px;
    margin-bottom: 5px;
}

/* ========== 页脚底部栏 (full-foot-bottom) ========== */
.full-foot-bottom {
    padding: 28px 0 34px;
    background: var(--secondary);
    color: #ccc;
    font-size: 14px;
    line-height: 26px;
    border-top: 1px solid #4d4d4d;
    text-align: center;
}

.full-foot-bottom a {
    color: #ccc;
    text-decoration: none;
}

.full-foot-bottom a:hover {
    color: #fff;
}

.full-foot-bottom .container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.full-foot-bottom p {
    margin-bottom: 12px;
}

/* ========== 统计数据区域 (z-introduce) ========== */
.z-introduce {
    margin-bottom: 40px;
    height: 72px;
    display: flex;
    justify-content: space-between;
}

.z-introduce > div {
    display: flex;
}

.z-font72 {
    font-family: PangMenZhengDao, 'Segoe UI', sans-serif;
    font-size: 72px;
    color: #fff;
    height: 72px;
    line-height: 72px;
}

.z-font15 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 26px;
    font-size: 15px;
    color: #fff;
}

.z-font15 p {
    text-align: left;
    margin-bottom: 5px;
}

/* ========== 响应式设计 ========== */
@media (max-width: 992px) {
    .nav-menu { display: none; position: absolute; top: 100%; right: 0; background: white; width: 250px; flex-direction: column; }
    .nav-menu.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .hero-slide h2 { font-size: 2.5rem; }
    .scenario-tabs, .product-tabs, .industry-tabs { flex-direction: column; align-items: center; }
    .scenario-tab, .product-tab, .industry-tab { width: 100%; text-align: center; }
}

@media (max-width: 768px) {
    .hero-slider { height: 500px; margin-top: 70px; }
    .hero-slide h2 { font-size: 2rem; }
    .hero-slide p { font-size: 1.1rem; }
    .btn { padding: 14px 30px; font-size: 1rem; }
    .consult-btn { display: none !important; }
    .phone-link { font-size: 1rem; margin-right: 10px; }
    .logo img { width: 140px; }
    .products-grid, .advantages-grid, .stories-grid, .news-grid { grid-template-columns: 1fr; }
    .challenges-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: 1fr; }
    .intro-container { flex-direction: column; gap: 30px; }
    .gzfull-contact .msg { width: 100%; }
    
    /* 解决方案卡片移动端适配 */
    .challenge-footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .card-link-wrapper {
        justify-content: flex-end;
        width: 100%;
    }
    
    .card-link {
        white-space: normal;
    }
}

/* 响应式底部适配 */
@media (max-width: 768px) {
    .display0905 {
        display: none;
    }
    
    .gzfull-contact .msg {
        width: 100%;
        display: block;
    }
    
    .gzfull-contact .ctrl {
        width: 100%;
        display: block;
        margin-top: 30px;
    }
    
    .z-introduce {
        flex-wrap: wrap;
        height: auto;
        gap: 20px;
        justify-content: center;
    }
    
    .z-introduce > div {
        flex: 0 0 45%;
        justify-content: center;
    }
    
    .z-font72 {
        font-size: 48px;
        height: auto;
        line-height: 1.2;
    }
    
    .z-font15 {
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .z-introduce > div {
        flex: 0 0 100%;
        justify-content: flex-start;
        padding-left: 20px;
    }
    
    .full-foot-bottom {
        padding: 20px 0 25px;
        font-size: 12px;
    }
}

.local-banner {
    background: #e8f0fe;
    padding: 16px 0;
    text-align: center;
}
.local-banner p {
    font-size: 15px;
    color: #1d4ed8;
    font-weight: 500;
    margin: 0;
}
.local-banner i {
    margin-right: 6px;
    color: #e74c3c;
}
@media (max-width: 480px) {
    .navbar {
        padding: 8px 0;
    }
    
    .logo img {
        width: 145px;
    }
    
    .phone-link {
        font-size: 16px;
    }
    
    .phone-link i {
        font-size: 16px;
        margin-right: 3px;
    }
    
    .consult-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .consult-btn i {
        margin-right: 3px;
        font-size: 0.75rem;
    }
    
    .nav-actions {
        gap: 5px;
    }
}