:root {
    /* 优化主色调 - 增强对比度 */
    --primary-blue: #003366;
    --secondary-blue: #0066cc;
    --accent-orange: #ff5500;
    --accent-teal: #00a8a8;
    --light-gray-bg: #f5f7fa;
    --card-white: #ffffff;
    --text-dark: #1a2b3c;
    --text-gray: #5a6c7d;
    --border-light: #e1e5eb;
    --border-medium: #c8d1dc;
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-deep: 0 12px 36px rgba(0, 74, 153, 0.15);
    --radius-soft: 10px;
    --radius-medium: 14px;
    --radius-round: 24px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* 全局优化 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-gray-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

/* 增强容器视觉效果 */
.tag-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 60px;
    position: relative;
}

/* 增强链接效果 */
.tag-page-container a:not(.btn) {
    color: var(--secondary-blue);
    text-decoration: none;
    position: relative;
    transition: color var(--transition-fast);
    font-weight: 500;
}

.tag-page-container a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width var(--transition-medium);
}

.tag-page-container a:not(.btn):hover {
    color: var(--primary-blue);
}

.tag-page-container a:not(.btn):hover::after {
    width: 100%;
}

/* 增强头部设计 */
.site-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    color: white;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
}

.site-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

/* 增强面包屑导航 */
.breadcrumb {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    padding: 16px 0;
    font-size: 0.9em;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.breadcrumb a {
    color: var(--text-gray);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary-blue);
}

/* 增强主要标题区域 */
.tag-hero-section {
    text-align: center;
    padding: 60px 0 40px;
    margin-bottom: 60px;
    position: relative;
}

.tag-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.tag-title {
    padding-top: 40px;
    font-size: 3.2em;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tag-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
    border-radius: 3px;
}

.tag-subtitle {
    font-size: 1.2em;
    color: var(--text-gray);
    font-weight: 500;
    max-width: 800px;
    margin: 30px auto;
    line-height: 1.6;
    position: relative;
    padding: 0 20px;
}

/* 增强主要介绍内容 */
.editor-content-1 {
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    border-left: 6px solid var(--secondary-blue);
    padding: 32px;
    border-radius: var(--radius-medium);
    margin: 40px 0;
    box-shadow: var(--shadow-subtle);
    position: relative;
    overflow: hidden;
}

.editor-content-1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), transparent);
    border-radius: 0 0 0 100px;
}

.editor-content-1 strong {
    color: var(--primary-blue);
    font-weight: 700;
    background: linear-gradient(transparent 70%, rgba(255, 107, 53, 0.2) 70%);
    padding: 0 2px;
}

/* 增强内容网格布局 */
.content-matrix {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .content-matrix {
        grid-template-columns: 2.5fr 1.5fr;
        gap: 50px;
    }
}

/* 增强编辑模块 */
.editor-module {
    background: var(--card-white);
    border-radius: var(--radius-medium);
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.editor-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-orange), var(--accent-teal));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.editor-module:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
}

.editor-module:hover::before {
    opacity: 1;
}

.editor-module h2 {
    color: var(--primary-blue);
    font-size: 1.8em;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--accent-orange);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
}

.editor-module h2::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 24px;
    background: var(--accent-orange);
    margin-right: 12px;
    border-radius: 2px;
}

.editor-module h3,
.editor-module h4 {
    color: var(--primary-blue);
    font-size: 1.4em;
    margin: 28px 0 18px;
    font-weight: 600;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

.editor-module h3::after,
.editor-module h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-blue), transparent);
    border-radius: 2px;
}

/* 增强列表样式 */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.feature-list li {
    padding: 14px 0 14px 42px;
    position: relative;
    border-bottom: 1px dotted var(--border-light);
    line-height: 1.6;
    transition: background-color var(--transition-fast);
}

.feature-list li:hover {
    background-color: rgba(0, 102, 204, 0.03);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-teal));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(0, 102, 204, 0.2);
}

.feature-list li::after {
    content: '✓';
    position: absolute;
    left: 0;
    top: 14px;
    width: 28px;
    height: 28px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    font-weight: bold;
    z-index: 1;
}

/* 增强表格设计 */
.spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    background: white;
    border-radius: var(--radius-soft);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
}

.spec-table th {
    background: linear-gradient(135deg, var(--primary-blue), #004080);
    color: white;
    padding: 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95em;
    border-bottom: 3px solid var(--accent-orange);
}

.spec-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    transition: background-color var(--transition-fast);
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.spec-table tr:hover td {
    background-color: rgba(0, 102, 204, 0.05);
}

/* 增强产品预览区域 */
.product-preview-section {
    margin: 60px 0;
    padding-top: 50px;
    border-top: 2px solid var(--border-light);
    position: relative;
}

.product-preview-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-orange);
}

.product-preview-section h2 {
    text-align: center;
    font-size: 2.2em;
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.product-preview-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.preview-card {
    background: var(--card-white);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-medium);
    border: 1px solid var(--border-light);
    position: relative;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--accent-teal));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.preview-card:hover::before {
    opacity: 1;
}

.preview-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.preview-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.preview-card:hover .preview-card-img img {
    transform: scale(1.08);
}

.preview-card-content {
    padding: 24px;
}

.preview-card h3 {
    font-size: 1.3em;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.preview-card p {
    color: var(--text-gray);
    font-size: 0.95em;
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: white;
    border-radius: var(--radius-soft);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-medium);
    border: none;
    cursor: pointer;
    font-size: 0.95em;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue), #003366);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 74, 153, 0.3);
}

.btn-primary:hover::after {
    left: 100%;
}

/* 增强优势列表 */
.advantage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 36px 0;
}

.advantage-item {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 250px;
    background: white;
    padding: 30px 24px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-blue);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-item i {
    display: block;
    font-size: 3em;
    color: var(--secondary-blue);
    margin-bottom: 20px;
    transition: transform var(--transition-medium);
}

.advantage-item:hover i {
    transform: scale(1.1);
}

.advantage-item span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1em;
    position: relative;
}

/* 增强FAQ模块 */
ul.manufacturer-ul-faq {
    background: white;
    border-radius: var(--radius-medium);
    padding: 36px;
    margin: 50px 0;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

ul.manufacturer-ul-faq::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 168, 168, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

ul.manufacturer-ul-faq h3 {
    color: var(--primary-blue);
    font-size: 1.6em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    padding-bottom: 18px;
    border-bottom: 3px solid var(--accent-orange);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-list {
    list-style: none;
    padding: 0;
}

.editor-module-faq {
    border-bottom: 1px solid var(--border-light);
    padding: 18px 0;
    transition: background-color var(--transition-fast);
    border-radius: var(--radius-soft);
        background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
}

.editor-module-faq:hover {
    background-color: rgba(0, 102, 204, 0.02);
}

.faq-question {
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    padding: 12px 50px 12px 0;
    position: relative;
    font-size: 1.1em;
    line-height: 1.5;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8em;
    color: var(--secondary-blue);
    transition: all var(--transition-medium);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 102, 204, 0.1);
}

.faq-question.active::after {
    content: '−';
    background-color: var(--secondary-blue);
    color: white;
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-medium);
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-answer.active {
    padding: 20px 0 10px;
    max-height: 1000px;
}

/* 增强相关链接区域 */
.prodet-3.Auxil-related {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-radius: var(--radius-medium);
    padding: 32px;
    margin: 50px 0;
    border: 1px solid #cce0ff;
    position: relative;
    overflow: hidden;
}

.prodet-3.Auxil-related::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--secondary-blue));
}

.prodet-3.Auxil-related h3 {
    color: var(--primary-blue);
    font-size: 1.5em;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.prodet-3.Auxil-related h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.link-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: white;
    color: var(--secondary-blue);
    border-radius: var(--radius-round);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
    border: 2px solid var(--border-medium);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.link-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-teal));
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 0;
}

.link-tag span {
    position: relative;
    z-index: 1;
}

.link-tag:hover {
    color: white;
    border-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.2);
}

.link-tag:hover::before {
    opacity: 1;
}

/* 响应式优化 */
@media (max-width: 1200px) {
    .tag-page-container {
        max-width: 100%;
        padding: 0 20px 40px;
    }
    
    .advantage-item {
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .tag-title {
        font-size: 2.4em;
    }
    
    .content-matrix {
        gap: 30px;
    }
    
    .editor-module {
        padding: 24px;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .advantage-item {
        flex: 1 1 100%;
    }
    
    .site-header {
        padding: 24px 0;
    }
    
    .tag-hero-section {
        padding: 40px 0 30px;
    }
    
    .product-preview-section h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .tag-title {
        font-size: 2em;
    }
    
    .tag-subtitle {
        font-size: 1em;
        padding: 0 10px;
    }
    
    .editor-content-1 {
        padding: 24px;
    }
    
    .spec-table th,
    .spec-table td {
        padding: 12px;
        font-size: 0.9em;
    }
    
    ul.manufacturer-ul-faq ,
    .prodet-3.Auxil-related {
        padding: 24px;
    }
    
    .btn-primary {
        padding: 10px 22px;
        width: 100%;
    }
}

/* 新增实用类 */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.highlight {
    color: var(--accent-orange);
    font-weight: 700;
    background: linear-gradient(transparent 70%, rgba(255, 85, 0, 0.15) 70%);
    padding: 0 2px;
}

.highlight-blue {
    color: var(--secondary-blue);
    font-weight: 700;
    background: linear-gradient(transparent 70%, rgba(0, 102, 204, 0.15) 70%);
    padding: 0 2px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent-orange), #ff4400);
    color: white;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    margin-left: 12px;
    vertical-align: middle;
    box-shadow: 0 3px 8px rgba(255, 85, 0, 0.2);
}

.badge-blue {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    box-shadow: 0 3px 8px rgba(0, 102, 204, 0.2);
}

/* 增强动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 102, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* 滚动条优化 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--secondary-blue), var(--primary-blue));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--primary-blue), #003366);
}

/* 选择文本优化 */
::selection {
    background-color: rgba(0, 102, 204, 0.2);
    color: var(--text-dark);
}

/* 打印优化 */
@media print {
    .btn-primary,
    .link-tag,
    .preview-card:hover,
    .spec-table tr:hover td {
        box-shadow: none !important;
        transform: none !important;
    }
    
    .tag-page-container {
        max-width: 100%;
        padding: 0;
    }
    
    .preview-card {
        break-inside: avoid;
        border: 1px solid #ddd;
    }
    
    .site-header {
        background: #003366 !important;
        color: black !important;
    }
    
    .tag-title::after,
    .editor-module::before,
    .preview-card::before,
    .advantage-item::before,
    .prodet-3.Auxil-related::before {
        display: none;
    }
}


section.editor-module1 {
    font-size: 16px;
    line-height: 34px;
    background: var(--card-white);
    border-radius: var(--radius-medium);
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

h4 {
    color: var(--primary-blue);
    font-size: 22px;
    line-height: 36px;
    margin: 28px 0 18px;
    font-weight: 600;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 15px;
}
p.hero-section-p {
    font-size: 20px;
}