/* Custom CSS for Monosolution */

:root {
    --color-navy: #111111;
    --color-slate-blue: #333333;
    --color-primary: #FF6600;
    --color-primary-light: #FFA366;
    --color-white: #FFFFFF;
    --color-bg: #F8FAFC;
    --color-text-main: #111111;
    --color-text-muted: #555555;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    --transition-fast: 0.2s ease;
    --transition-norm: 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

p {
    margin-bottom: 2rem;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 1.0rem;
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-norm);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1;
}

.btn-large {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #CC5200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline.glassmorphism {
    color: var(--color-navy);
    border-color: rgba(17, 17, 17, 0.2);
    background: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 1.5rem;
    margin-bottom: 0;
}

.btn-outline.glassmorphism:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-norm);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-navy);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--color-primary);
}

.logo-img {
    height: 32px;
    width: auto;
    transition: height 0.3s ease;
}

@media (max-width: 992px) {
    .logo-img {
        height: 24px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 600;
    font-size: 1.15rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-norm);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    min-width: 200px;
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-norm);
}

.nav-dropdown:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(255, 102, 0, 0.1);
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-navy);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 12rem 0 10rem;
    background-color: #07090f;
    background-image:
        linear-gradient(to right, rgba(11, 25, 44, 0.95) 0%, rgba(11, 25, 44, 0.7) 40%, rgba(11, 25, 44, 0.1) 100%),
        url('/images/common/hero-engineer-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 650px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

/* Solutions Section */
.solutions-section {
    padding: 6rem 0;
    background: var(--color-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.product-card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: var(--transition-norm);
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 25, 44, 0.08);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.privacy-icon {
    background: rgba(255, 102, 0, 0.1);
    color: var(--color-primary);
}

.web-icon {
    background: rgba(30, 62, 98, 0.1);
    color: var(--color-slate-blue);
}

.db-icon {
    background: rgba(11, 25, 44, 0.1);
    color: var(--color-navy);
}

.product-svg {
    width: 32px;
    height: 32px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.card-desc {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.card-link:hover {
    gap: 0.75rem;
    color: var(--color-navy);
}

/* Stats Section */
.stats-section {
    padding: 2rem 0 6rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem;
    border-radius: 20px;
    background: var(--color-white);
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: var(--color-text-muted);
}

/* Footer Section */
.main-footer {
    background-color: var(--color-white);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--color-text-muted);
    max-width: 300px;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-navy);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    background: var(--color-bg);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .nav-dropdown:last-child {
        border-bottom: none;
    }

    .nav-dropdown>.nav-link {
        font-weight: 700;
        font-size: 1.1rem;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        display: none;
        flex-direction: column;
        align-items: center;
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
        background: #f8fafc;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        border: 1px solid rgba(0, 0, 0, 0.03);
        border-radius: 8px;
    }

    .dropdown-menu a {
        font-size: 0.95rem;
        color: var(--color-text-muted);
        padding: 0.6rem 1rem;
        width: 90%;
        background: transparent;
        border-radius: 6px;
        font-weight: 500;
        margin: 0;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 102, 0, 0.08);
        color: var(--color-primary);
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .header-actions .btn {
        display: none;
    }

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

    .product-cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* =========================================================================
   SUBPAGE STYLES
========================================================================= */

.subpage-hero {
    position: relative;
    padding: 7rem 0 3.5rem;
    background-color: var(--color-navy);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    text-align: center;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 25, 44, 0.7) 0%, rgba(30, 62, 98, 0.5) 100%);
    z-index: 1;
}

.subpage-title-wrap {
    position: relative;
    z-index: 2;
}

.subpage-hero .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.subpage-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.subpage-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Breadcrumbs / Sub Nav */
.subnode-nav {
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.breadcrumb a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb .divider {
    color: #ccc;
}

.breadcrumb .active {
    font-weight: 600;
    color: var(--color-primary);
}

/* Subpage Layout Grid */
.subpage-content {
    padding: 4rem 2rem;
}

.subpage-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
}

/* Sidebar */
.sidebar {
    padding: 2rem;
    border-radius: 12px;
    align-self: start;
    position: sticky;
    top: 100px;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary-light);
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-fast);
    font-weight: 500;
}

.sidebar-menu a:hover {
    background: rgba(255, 102, 0, 0.05);
    color: var(--color-primary);
}

.sidebar-menu a.active {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

/* Content Area */
.content-area {
    min-height: 50vh;
}

.content-heading {
    font-size: 2rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.content-heading .highlight {
    color: var(--color-primary);
}

.content-text {
    font-size: 1.05rem;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mb-medium {
    margin-bottom: 3rem;
}

/* Features Grid (Company Info) */
.company-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.c-feature-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition-norm);
}

.c-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.c-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.c-feature-card h4 {
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.c-feature-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Solutions List (Business Info) */
.business-solutions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bs-card {
    display: flex;
    background: var(--color-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    gap: 2rem;
    transition: var(--transition-norm);
}

.bs-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--color-primary);
}

.bs-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: rgba(255, 102, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-icon .text-icon {
    font-size: 2.5rem;
}

.bs-details {
    flex-grow: 1;
}

.bs-details h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.badge-mini {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-navy);
    font-weight: 600;
}

.bs-details p {
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.bs-actions {
    display: flex;
    gap: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Mobile Subpage */
@media (max-width: 992px) {
    .subpage-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .company-features-grid {
        grid-template-columns: 1fr;
    }

    .bs-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Subpage Specific Extensions (History, Cust, Map) */

/* Timeline for Company Hist */
.timeline-container {
    border-left: 3px solid rgba(255, 102, 0, 0.2);
    padding-left: 2rem;
    margin-left: 1rem;
    position: relative;
    margin-bottom: 3rem;
}

.timeline-group {
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
}

.timeline-year::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--color-white);
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
}

.timeline-events {
    list-style: none;
    padding-left: 0;
}

.timeline-events li {
    font-size: 1.05rem;
    color: var(--color-text-main);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.t-month {
    display: inline-block;
    width: 3.5rem;
    font-weight: 700;
    color: var(--color-navy);
}

/* Client Grid for Company Cust */
.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.client-box {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-norm);
}

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

.client-name {
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.client-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Map specific for Company Map */
.contact-card {
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    background: var(--color-white);
}

.contact-info-row {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
}

.contact-info-row strong {
    color: var(--color-navy);
    display: inline-block;
    width: 90px;
}

.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #f1f5f9;
}

.map-placeholder {
    text-align: center;
    color: var(--color-navy);
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.transport-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.method-box {
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.method-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.method-box h4 {
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.method-box ul {
    list-style: none;
    padding: 0;
}

.method-box ul li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.method-box ul li::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 992px) {
    .subpage-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        display: none;
    }

    .subpage-content {
        padding: 2rem 1rem;
    }

    .company-features-grid,
    .client-grid,
    .transport-methods {
        grid-template-columns: 1fr;
    }

    .content-area {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .content-area img {
        max-width: 100%;
        height: auto;
    }

    .content-area table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
    }

    .content-text {
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}