:root {
    --primary: #004a99;
    --primary-dark: #003a7a;
    --primary-light: #e6f0ff;
    --secondary: #0066cc;
    --accent-1: #2d6da8;
    --accent-2: #5a9ab8;
    --accent-3: #8ab3c9;
    --gold: #c9a84c;
    --gold-light: #f5edd6;
    --bg: #f4f7fc;
    --card: #ffffff;
    --text: #1a2a3a;
    --text-light: #5a6a7a;
    --border: #e6ecf3;
    --shadow-sm: 0 2px 12px rgba(0, 74, 153, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 74, 153, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 74, 153, 0.12);
    --shadow-hover: 0 20px 60px rgba(0, 74, 153, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.tag-page-container a {
    text-decoration: none;
    color: var(--secondary);
    transition: color var(--transition);
}
.tag-page-container a:hover {
    color: var(--primary);
}

.tag-page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 30px 60px 30px;
}

header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 24px 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 74, 153, 0.20);
}

.breadcrumb {
    background-color: var(--card);
    padding: 14px 30px;
    font-size: 0.9em;
    border-bottom: 1px solid var(--border);
}

.tag-hero-section {
    padding: 30px 0 20px 0;
    margin-bottom: 30px;
}

.tag-title {
    font-size: 3.6em;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tag-hero-section .hero-section-p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.editor-content-1 {
    font-size: 16px;
    color: var(--text);
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #f2f7ff 100%);
    border-radius: var(--radius-lg);
    line-height: 1.9;
    border-left: 6px solid var(--secondary);
    box-shadow: var(--shadow-sm);
}
.editor-content-1 strong {
    font-weight: 700;
    color: var(--primary);
}

.product-preview-section .list {
    margin-top: 50px;
}

.product-preview-section .list span.swiper-notification {
    display: none;
}

.product-preview-section .list .box {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.product-preview-section .list .newbox1 {
    padding: 10px;
    background: #f0f2f5;
    border-radius: var(--radius);
}

.product-preview-section .box .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}

.product-preview-section .list .box .con {
    margin-top: 20px;
}

.product-preview-section .list .box .con p {
    font-size: 14px;
    color: var(--text-light);
}

.product-preview-section .list .box .con h6 {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    line-height: 1.5;
    text-transform: capitalize;
}

.content-matrix {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: 0 auto;
}

.main-content-column,
.sidebar-content-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
}

.det-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
    cursor: pointer;
    user-select: none;
}

.det-number {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    flex-shrink: 0;
}

.det-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.det-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    flex: 1;
}

.det-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.det-toggle-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: var(--text-light);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.det-toggle-btn:hover {
    background: var(--primary-light);
    border-color: var(--secondary);
    color: var(--primary);
}

.det-toggle-btn.active {
    transform: rotate(180deg);
}

.det-body {
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s ease,
                padding 0.5s ease;
    max-height: 9999px;
    opacity: 1;
}

.det-body.collapsed {
    max-height: 0;
    opacity: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.info-column1 {
    background: var(--card);
    padding: 32px 40px 38px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.info-column1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-2));
}
.info-column1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.info-column1 h2 {
    font-size: 1.8em;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.info-column1 h2::before {
    content: '◆ ';
    color: var(--secondary);
}

.info-column1 h3 {
    color: var(--primary);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.info-column1 h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--secondary);
    border-radius: 2px;
    margin-right: 10px;
    vertical-align: middle;
}

.info-column1 h4 {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.info-column1 p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.info-column1 ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
    position: relative;
    z-index: 1;
}

.info-column1 li {
    padding: 8px 0 8px 30px;
    border-bottom: 1px dashed var(--border);
    position: relative;
    line-height: 1.8;
    font-size: 15px;
    transition: padding-left 0.3s;
}
.info-column1 li:hover {
    padding-left: 36px;
}
.info-column1 li:last-child {
    border-bottom: none;
}
.info-column1 li::before {
    content: '▸';
    color: var(--secondary);
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 16px;
    transition: transform 0.3s;
}
.info-column1 li:hover::before {
    transform: translateX(4px);
}

.info-column1 table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    overflow: hidden;
}
.info-column1 table th,
.info-column1 table td {
    padding: 12px 18px;
    border: 1px solid #d0d7de;
    text-align: left;
    font-size: 14px;
}
.info-column1 table th {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), #f2f7ff);
    color: var(--primary);
}
.info-column1 table tbody tr td:first-of-type {
    font-weight: 700;
    color: var(--primary);
}
.info-column1 table tr:hover td {
    background-color: var(--primary-light);
}

.editor-module1 {
    background: var(--card);
    padding: 32px 40px 38px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.editor-module1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-2), var(--primary));
}
.editor-module1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.editor-module1 h2 {
    font-size: 1.8em;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.editor-module1 h2::before {
    content: '◈ ';
    color: var(--secondary);
}

.editor-module1 h3 {
    text-align: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 16px;
    padding-top: 6px;
    font-weight: 700;
    position: relative;
    padding-bottom: 14px;
    z-index: 1;
}
.editor-module1 h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-2));
    margin: 12px auto 0;
    border-radius: 4px;
}

.editor-module1 h4 {
    text-align: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    z-index: 1;
}
.editor-module1 h4::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-2);
    margin: 10px auto 0;
    border-radius: 2px;
}

.editor-module1 p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.editor-module1 ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
    position: relative;
    z-index: 1;
}

.editor-module1 li {
    padding: 8px 0 8px 30px;
    border-bottom: 1px dashed var(--border);
    position: relative;
    line-height: 1.8;
    font-size: 15px;
    transition: padding-left 0.3s;
}
.editor-module1 li:hover {
    padding-left: 36px;
}
.editor-module1 li:last-child {
    border-bottom: none;
}
.editor-module1 li::before {
    content: '✦';
    color: var(--accent-1);
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 14px;
    transition: transform 0.3s;
}
.editor-module1 li:hover::before {
    transform: rotate(90deg);
}

.editor-module1 table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    overflow: hidden;
}
.editor-module1 table th,
.editor-module1 table td {
    padding: 12px 18px;
    border: 1px solid #d0d7de;
    text-align: left;
    font-size: 14px;
}
.editor-module1 table th {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), #f2f7ff);
    color: var(--primary);
}
.editor-module1 table tr:hover td {
    background-color: var(--primary-light);
}

.editor-module {
    background: var(--card);
    padding: 32px 40px 38px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.editor-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-3), var(--accent-2));
}
.editor-module:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.editor-module h2 {
    font-size: 1.8em;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.editor-module h2::before {
    content: '▣ ';
    color: var(--secondary);
}

.editor-module h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.editor-module h3::before {
    content: '◆ ';
    color: var(--secondary);
    font-size: 18px;
}

.editor-module h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.editor-module p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.editor-module ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
    position: relative;
    z-index: 1;
}

.editor-module li {
    padding: 8px 0 8px 30px;
    border-bottom: 1px dashed var(--border);
    position: relative;
    line-height: 1.8;
    font-size: 15px;
    transition: padding-left 0.3s;
}
.editor-module li:hover {
    padding-left: 36px;
}
.editor-module li:last-child {
    border-bottom: none;
}
.editor-module li::before {
    content: '▶';
    color: var(--accent-2);
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 12px;
    transition: transform 0.3s;
}
.editor-module li:hover::before {
    transform: translateX(4px);
}

.editor-module table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    overflow: hidden;
}
.editor-module table th,
.editor-module table td {
    padding: 12px 18px;
    border: 1px solid #d0d7de;
    text-align: left;
    font-size: 14px;
}
.editor-module table th {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), #f2f7ff);
    color: var(--primary);
}
.editor-module table tr:hover td {
    background-color: var(--primary-light);
}

.editor-module-service {
    background: var(--card);
    padding: 32px 40px 38px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.editor-module-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-2));
}
.editor-module-service:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.editor-module-service h2 {
    font-size: 1.8em;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.editor-module-service h2::before {
    content: '◆ ';
    color: var(--gold);
}

.editor-module-service h3 {
    color: var(--primary);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary);
    font-weight: 700;
    text-align: left;
    position: relative;
    z-index: 1;
}
.editor-module-service h3::before {
    content: '✦ ';
    color: var(--gold);
}

.editor-module-service h4 {
    color: var(--primary);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.editor-module-service p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.editor-module-service ul {
    list-style: none;
    padding-left: 0;
    position: relative;
    z-index: 1;
}

.editor-module-service li {
    padding: 8px 0 8px 30px;
    border-bottom: 1px dashed var(--border);
    position: relative;
    line-height: 1.8;
    font-size: 15px;
    transition: padding-left 0.3s;
}
.editor-module-service li:hover {
    padding-left: 36px;
}
.editor-module-service li:last-child {
    border-bottom: none;
}
.editor-module-service li::before {
    content: '✦';
    color: var(--gold);
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 14px;
    transition: transform 0.3s;
}
.editor-module-service li:hover::before {
    transform: rotate(90deg) scale(1.2);
}

.editor-module-service table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    overflow: hidden;
}
.editor-module-service table th,
.editor-module-service table td {
    padding: 12px 18px;
    border: 1px solid #d0d7de;
    text-align: left;
    font-size: 14px;
}
.editor-module-service table th {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), #f2f7ff);
    color: var(--primary);
}
.editor-module-service table tr:hover td {
    background-color: var(--primary-light);
}

.editor-module-faq {
    background: var(--card);
    padding: 32px 40px 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.editor-module-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3), var(--accent-1));
}
.editor-module-faq:hover {
    box-shadow: var(--shadow-md);
}

.editor-module-faq h2 {
    font-size: 1.8em;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
}
.editor-module-faq h2::before {
    content: '❓ ';
    color: var(--secondary);
}

.editor-module-faq h3 {
    color: var(--primary);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary);
    font-weight: 700;
}

.editor-module-faq h4 {
    text-align: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    z-index: 1;
}
.editor-module-faq h4::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-2));
    margin: 12px auto 0;
    border-radius: 4px;
}

.editor-module-faq p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.editor-module-faq ul.gala {
    list-style: none;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.editor-module-faq ul.gala li.gala {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.editor-module-faq ul.gala li.gala:last-child {
    border-bottom: none;
}

.editor-module-faq ul.gala li.gala:nth-child(odd) {
    font-weight: 700;
    cursor: pointer;
    background: #f8faff;
    padding-right: 48px;
    position: relative;
    transition: background 0.3s, padding-left 0.3s;
}

.editor-module-faq ul.gala li.gala:nth-child(odd):hover {
    background: var(--primary-light);
    padding-left: 28px;
}

.editor-module-faq ul.gala li.gala:nth-child(odd)::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--secondary);
    transition: transform 0.4s ease;
}

.editor-module-faq ul.gala li.gala:nth-child(odd).expanded::after {
    content: '−';
}

.editor-module-faq ul.gala li.gala:nth-child(odd) strong {
    font-weight: 700;
    color: var(--text);
}

.editor-module-faq ul.gala li.gala:nth-child(even) {
    max-height: 0;
    padding: 0 20px;
    opacity: 0;
    overflow: hidden;
    background: #ffffff;
    color: var(--text-light);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s ease,
                opacity 0.4s ease;
    border-bottom: none;
    line-height: 1.8;
    font-size: 15px;
}

.editor-module-faq ul.gala li.gala:nth-child(even).active {
    max-height: 600px;
    padding: 18px 20px 22px;
    opacity: 1;
    border-top: 1px solid var(--border);
}

.editor-module-faq ul.gala li.gala:nth-child(even) strong {
    font-weight: 600;
    color: var(--primary);
}

.editor-module-faq table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    overflow: hidden;
}
.editor-module-faq table th,
.editor-module-faq table td {
    padding: 12px 18px;
    border: 1px solid #d0d7de;
    text-align: left;
    font-size: 14px;
}
.editor-module-faq table th {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), #f2f7ff);
    color: var(--primary);
}
.editor-module-faq table tr:hover td {
    background-color: var(--primary-light);
}

.more-info {
    background: var(--card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 32px 40px 38px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.more-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-3), var(--accent-1), var(--accent-3));
}
.more-info:hover {
    box-shadow: var(--shadow-md);
}

.more-info h2 {
    color: var(--text);
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.more-info h2::before {
    content: '◆ ';
    color: var(--accent-3);
}

.more-info h3 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.more-info h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--secondary);
    border-radius: 2px;
    margin-right: 10px;
    vertical-align: middle;
}

.more-info h4 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.more-info p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.more-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.more-info li {
    margin: 0;
    padding: 0;
}

.more-info a {
    display: block;
    text-decoration: none;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid transparent;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s;
}
.more-info a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 74, 153, 0.30);
    transform: translateY(-2px) scale(1.02);
}

.more-info table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    overflow: hidden;
}
.more-info table th,
.more-info table td {
    padding: 12px 18px;
    border: 1px solid #d0d7de;
    text-align: left;
    font-size: 14px;
}
.more-info table th {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), #f2f7ff);
    color: var(--primary);
}
.more-info table tr:hover td {
    background-color: var(--primary-light);
}

@media (max-width: 992px) {
    .tag-title {
        font-size: 2.6em;
    }

    .content-matrix {
        gap: 32px;
    }
    .main-content-column,
    .sidebar-content-column {
        gap: 32px;
    }

    .info-column1 {
        padding: 24px 24px 30px;
    }
    .editor-module1 {
        padding: 24px 24px 30px;
    }
    .editor-module {
        padding: 24px 24px 30px;
    }
    .editor-module-service {
        padding: 24px 24px 30px;
    }
    .editor-module-faq {
        padding: 24px 24px 30px;
    }
    .more-info {
        padding: 24px 24px 30px;
    }

    .info-column1 ul {
        grid-template-columns: 1fr;
    }
    .editor-module1 ul {
        grid-template-columns: 1fr;
    }
    .editor-module ul {
        grid-template-columns: 1fr;
    }

    .tag-page-container,
    header,
    .breadcrumb {
        padding-left: 18px;
        padding-right: 18px;
    }

    .det-title {
        font-size: 17px;
    }
    .det-badge {
        font-size: 10px;
        padding: 3px 12px;
    }
}

@media (max-width: 768px) {
    .tag-title {
        font-size: 2.0em;
    }

    .editor-content-1 {
        padding: 20px;
        font-size: 15px;
    }

    .tag-hero-section .hero-section-p {
        font-size: 15px;
    }

    .content-matrix {
        gap: 24px;
    }
    .main-content-column,
    .sidebar-content-column {
        gap: 24px;
    }

    .info-column1 {
        padding: 18px 16px 22px;
        border-radius: var(--radius-lg);
    }
    .editor-module1 {
        padding: 18px 16px 22px;
        border-radius: var(--radius-lg);
    }
    .editor-module {
        padding: 18px 16px 22px;
        border-radius: var(--radius-lg);
    }
    .editor-module-service {
        padding: 18px 16px 22px;
        border-radius: var(--radius-lg);
    }
    .editor-module-faq {
        padding: 18px 16px 22px;
        border-radius: var(--radius-lg);
    }
    .more-info {
        padding: 18px 16px 22px;
        border-radius: var(--radius-lg);
    }

    .info-column1 h2 {
        font-size: 1.3em;
    }
    .editor-module1 h2 {
        font-size: 1.3em;
    }
    .editor-module h2 {
        font-size: 1.3em;
    }
    .editor-module-service h2 {
        font-size: 1.3em;
    }
    .editor-module-faq h2 {
        font-size: 1.3em;
    }

    .det-header {
        flex-wrap: wrap;
        gap: 8px 12px;
    }
    .det-title {
        font-size: 16px;
        width: 100%;
        order: 3;
    }
    .det-number {
        font-size: 12px;
        padding: 1px 12px;
    }
    .det-label {
        font-size: 11px;
    }
    .det-badge {
        font-size: 10px;
        padding: 2px 12px;
    }
    .det-toggle-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .editor-module-faq ul.gala li.gala:nth-child(odd) {
        font-size: 14px;
        padding: 14px 40px 14px 16px;
    }
    .editor-module-faq ul.gala li.gala:nth-child(even).active {
        padding: 14px 16px 18px;
        font-size: 14px;
    }

    .more-info ul {
        gap: 8px;
    }
    .more-info a {
        font-size: 12px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .tag-title {
        font-size: 1.6em;
    }

    .tag-page-container {
        padding: 12px 12px 40px 12px;
    }

    .content-matrix {
        gap: 18px;
    }
    .main-content-column,
    .sidebar-content-column {
        gap: 18px;
    }

    .info-column1 {
        padding: 14px 12px 18px;
        border-radius: var(--radius);
    }
    .editor-module1 {
        padding: 14px 12px 18px;
        border-radius: var(--radius);
    }
    .editor-module {
        padding: 14px 12px 18px;
        border-radius: var(--radius);
    }
    .editor-module-service {
        padding: 14px 12px 18px;
        border-radius: var(--radius);
    }
    .editor-module-faq {
        padding: 14px 12px 18px;
        border-radius: var(--radius);
    }
    .more-info {
        padding: 14px 12px 18px;
        border-radius: var(--radius);
    }

    .info-column1 h2 {
        font-size: 1.1em;
    }
    .editor-module1 h2 {
        font-size: 1.1em;
    }
    .editor-module h2 {
        font-size: 1.1em;
    }
    .editor-module-service h2 {
        font-size: 1.1em;
    }
    .editor-module-faq h2 {
        font-size: 1.1em;
    }

    .info-column1 h3 {
        font-size: 18px;
    }
    .editor-module1 h3 {
        font-size: 20px;
    }
    .editor-module h3 {
        font-size: 20px;
    }
    .editor-module-service h3 {
        font-size: 1.1em;
    }
    .editor-module-faq h4 {
        font-size: 20px;
    }

    .info-column1 p {
        font-size: 14px;
    }
    .editor-module1 p {
        font-size: 14px;
    }
    .editor-module p {
        font-size: 14px;
    }
    .editor-module-service p {
        font-size: 14px;
    }

    .info-column1 li {
        font-size: 14px;
        padding: 6px 0 6px 24px;
    }
    .editor-module1 li {
        font-size: 14px;
        padding: 6px 0 6px 24px;
    }
    .editor-module li {
        font-size: 14px;
        padding: 6px 0 6px 24px;
    }
    .editor-module-service li {
        font-size: 14px;
        padding: 6px 0 6px 24px;
    }

    .spec-table th,
    .spec-table td {
        padding: 8px 10px;
        font-size: 0.8em;
    }

    .det-title {
        font-size: 14px;
    }
    .det-number {
        font-size: 10px;
        padding: 1px 10px;
    }
    .det-label {
        font-size: 10px;
        letter-spacing: 1px;
    }
    .det-badge {
        display: none;
    }
    .det-toggle-btn {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .editor-module-faq ul.gala li.gala:nth-child(odd) {
        font-size: 13px;
        padding: 12px 36px 12px 14px;
    }
    .editor-module-faq ul.gala li.gala:nth-child(odd)::after {
        font-size: 18px;
        right: 12px;
    }
    .editor-module-faq ul.gala li.gala:nth-child(even).active {
        padding: 12px 14px 14px;
        font-size: 13px;
    }

    .more-info a {
        font-size: 11px;
        padding: 5px 12px;
    }
}