/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --secondary: #667eea;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --text: #333;
    --text-light: #666;
    --border: #e0e0e0;
    --bg: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-1);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.nav-brand i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-menu .cta-btn {
    background: var(--gradient-1);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.nav-menu .cta-btn:hover {
    transform: translateY(-2px);
}

.nav-menu .cta-btn::after {
    display: none;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--gradient-1);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        );
}

.barcode-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="5" width="2" height="100" fill="white" opacity="0.1"/><rect x="10" width="1" height="100" fill="white" opacity="0.1"/><rect x="13" width="3" height="100" fill="white" opacity="0.1"/><rect x="18" width="2" height="100" fill="white" opacity="0.1"/><rect x="22" width="1" height="100" fill="white" opacity="0.1"/><rect x="25" width="4" height="100" fill="white" opacity="0.1"/></svg>') repeat-x;
    animation: scan 10s linear infinite;
}

@keyframes scan {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Reading Time */
.reading-time {
    background: var(--white);
    padding: 15px 30px;
    text-align: center;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 70px;
    z-index: 999;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Main Content */
.main-content {
    width: 100%;
}

.content-section {
    background: var(--white);
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.content-section h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-section h2 i {
    color: var(--primary);
}

.content-section h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-section h4 {
    color: var(--dark);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section ul li, .content-section ol li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark);
}

/* Boxes */
.highlight-box {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-left: 4px solid var(--primary);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.info-box, .warning-box, .success-story {
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.success-story {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.info-box i, .warning-box i, .success-story i {
    font-size: 1.5rem;
    margin-top: 3px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.step {
    text-align: center;
    padding: 25px;
    background: var(--bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h4 {
    margin: 15px 0 10px;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Component Grid */
.component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.component-card {
    background: var(--bg);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.component-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.component-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.component-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.component-card p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.component-card strong {
    color: var(--dark);
}

/* Software Features */
.software-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature {
    background: var(--bg);
    padding: 25px;
    border-radius: 12px;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.feature h4 {
    margin-bottom: 15px;
    margin-top: 0;
}

.feature ul {
    padding-left: 20px;
}

.feature ul li {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* Tables */
.comparison-table, .cost-table, .roi-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead, .cost-table thead, .roi-table thead {
    background: var(--gradient-1);
    color: var(--white);
}

.comparison-table th, .cost-table th, .roi-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td, .cost-table td, .roi-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
}

.comparison-table tr:hover, .cost-table tr:hover, .roi-table tr:hover {
    background: var(--bg);
}

.cost-range {
    font-weight: bold;
    color: var(--primary);
}

.total-row {
    background: #f0f0f0;
    font-weight: bold;
}

.highlight-row {
    background: #e3f2fd;
    font-weight: bold;
    color: var(--primary);
}

/* Sector Cards */
.sector-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 30px 0;
}

.sector-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary);
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sector-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.sector-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.sector-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.advantage-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--white);
}

.advantage-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Stats Highlight */
.stat-highlight {
    background: var(--gradient-1);
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.stat-highlight h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 2rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.stat-item .stat-desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Selection Guide */
.selection-guide, .budget-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.guide-item, .budget-card {
    background: var(--bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.budget-card {
    position: relative;
}

.budget-card.featured {
    border-color: #ffc107;
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffc107;
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-1);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 0 4px var(--white);
}

.timeline-content {
    background: var(--bg);
    padding: 25px;
    border-radius: 12px;
}

.timeline-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

/* Cost Breakdown */
.cost-breakdown, .ongoing-costs {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.cost-category, .cost-item {
    background: var(--bg);
    padding: 30px;
    border-radius: 12px;
}

.cost-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cost-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.cost-total {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-top: 15px;
}

.total-cost-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.example-cost {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.example-cost h4 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary);
}

.cost-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.cost-detail:last-child {
    border-bottom: none;
    font-weight: bold;
    font-size: 1.2rem;
}

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

/* ROI Calculator */
.roi-calculator {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.roi-calculator h3 {
    margin-top: 0;
}

.roi-example {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

/* Integration Grid */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.integration-card {
    background: var(--bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.integration-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.integration-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

/* FAQ */
.faq-container {
    margin: 30px 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e3f2fd;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    padding: 80px 50px;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-cta.whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-cta.email {
    background: var(--dark);
    color: var(--white);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 1rem;
}

.cta-features div {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 15px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-marker {
        left: -30px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .component-grid,
    .advantages-grid,
    .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-secondary, .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 20px 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .navbar, .cta-section, .footer, .progress-bar {
        display: none;
    }
    
    .content-section {
        box-shadow: none;
        break-inside: avoid;
    }
}
