.elementor-23543 .elementor-element.elementor-element-ac697cd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-63d8ce4 *//* ============================================
   BASE RESET & VARIABLES
   ============================================ */
:root {
    --primary: #c8102e;
    --primary-dark: #a00d24;
    --secondary: #1a1a2e;
    --accent: #f5a623;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-warm: #fef9f0;
    --border: #e0e0e0;
    --border-light: #f0f0f0;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Merriweather', Georgia, serif;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: var(--secondary);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.announcement-bar p {
    margin: 0;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: #fff;
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.header-nav a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--primary);
    text-decoration: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.header-phone:hover {
    color: var(--primary);
    text-decoration: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    line-height: 1.4;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: #2d2d4a;
    color: #fff;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-wrap {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}

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

.breadcrumb li:last-child {
    color: var(--text-muted);
}

/* ============================================
   BLOG LAYOUT
   ============================================ */
.blog-main {
    padding: 40px 0 80px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
}

/* ============================================
   ARTICLE CONTENT
   ============================================ */
.article-header {
    margin-bottom: 32px;
}

.article-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.25;
    color: var(--secondary);
    margin-bottom: 16px;
}

.article-meta {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.meta-divider {
    color: var(--border);
}

.article-hero {
    margin-bottom: 36px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Article Sections */
.article-section {
    margin-bottom: 48px;
}

.article-section h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
    line-height: 1.35;
}

.article-section h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    margin-top: 24px;
}

.article-section p {
    margin-bottom: 18px;
    color: var(--text);
}

.article-intro {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-light);
}

/* Lists */
.styled-list {
    margin: 0 0 24px 24px;
    padding: 0;
}

.styled-list li {
    margin-bottom: 10px;
    padding-left: 8px;
}

.styled-list.numbered {
    list-style-type: decimal;
}

.styled-list.check-list {
    list-style: none;
    margin-left: 0;
}

.styled-list.check-list li {
    padding-left: 28px;
    position: relative;
}

.styled-list.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   TABLE OF CONTENTS
   ============================================ */
.toc-box {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin-bottom: 48px;
}

.toc-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    border-bottom: none;
    padding-bottom: 0;
}

.toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 1;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    color: var(--text-light);
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.toc-list a::before {
    content: '→';
    color: var(--primary);
    font-weight: 700;
}

.toc-list a:hover {
    color: var(--primary);
    text-decoration: none;
    padding-left: 4px;
}

/* ============================================
   CALLOUT BOXES
   ============================================ */
.callout-box {
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin: 28px 0;
}

.callout-box h3 {
    margin-top: 0;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.callout-box p {
    margin-bottom: 0;
}

.callout-warning {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-left: 4px solid var(--warning);
}

.callout-warning h3 {
    color: #f57f17;
}

.callout-danger {
    background: #fce4ec;
    border: 1px solid #ef9a9a;
    border-left: 4px solid var(--danger);
}

.callout-danger h3 {
    color: var(--danger);
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.benefit-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--secondary);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ============================================
   STEPS CONTAINER
   ============================================ */
.steps-container {
    margin: 32px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.step-content h3 {
    margin-top: 4px;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.step-content p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 15px;
}

/* ============================================
   INLINE CTA
   ============================================ */
.cta-inline {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d4a 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    margin: 36px 0;
}

.cta-inline p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-inline .btn {
    margin: 6px 8px;
}

/* ============================================
   TESTIMONIAL QUOTE
   ============================================ */
.testimonial-quote {
    background: var(--bg-warm);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin: 32px 0;
    font-style: italic;
}

.testimonial-quote p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.8;
}

.testimonial-quote cite {
    font-style: normal;
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

/* ============================================
   USE CASE GRID
   ============================================ */
.use-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    margin: 28px 0;
}

.use-case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s;
}

.use-case-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.use-case-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.use-case-card h3 {
    font-size: 0.95rem;
    margin-top: 0;
    margin-bottom: 8px;
}

.use-case-card p {
    font-size: 13.5px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table-wrap {
    overflow-x: auto;
    margin: 28px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table thead th {
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.comparison-table thead th:first-child {
    border-radius: var(--radius-md) 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 var(--radius-md) 0 0;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.comparison-table tbody tr:hover {
    background: #eef2ff;
}

.red { color: var(--danger); margin-right: 6px; }
.green { color: var(--success); margin-right: 6px; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
    margin-top: 20px;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: border-color 0.25s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item h3 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 15px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    margin: 36px 0;
}

.final-cta h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 12px;
}

.final-cta > p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

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

.final-cta .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.final-cta .btn-primary:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.final-cta .btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.final-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.25);
}

.final-cta .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.final-cta .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.cta-note {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin-bottom: 0;
}

/* ============================================
   DISCLAIMER BOXES
   ============================================ */
.disclaimer-box {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-left: 4px solid var(--text-muted);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 28px 0;
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.7;
}

.disclaimer-box p {
    margin-bottom: 0;
}

.final-disclaimer {
    margin-top: 48px;
    background: #f5f5f5;
}

/* ============================================
   SIDEBAR
   ============================================ */
.blog-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.cta-widget {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d4a 100%);
    color: #fff;
    text-align: center;
}

.cta-widget h3 {
    color: #fff;
    border-bottom-color: var(--accent);
}

.cta-widget p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 18px;
}

.cta-widget .btn-primary {
    width: 100%;
}

.sidebar-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    color: var(--text);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    padding: 6px 0;
}

.sidebar-links a:hover {
    color: var(--primary);
    text-decoration: none;
    padding-left: 4px;
}

.sidebar-links i {
    color: var(--primary);
    width: 18px;
    text-align: center;
}

.sidebar-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text);
}

.sidebar-features i {
    color: var(--success);
}

.testimonial-widget .mini-testimonial {
    font-size: 13.5px;
}

.mini-testimonial .stars {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 8px;
}

.mini-testimonial p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.65;
}

.mini-testimonial .reviewer {
    font-weight: 700;
    color: var(--secondary);
    font-size: 13px;
}

.sidebar-link-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.contact-widget p {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text);
}

.contact-widget .small-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.contact-widget a {
    color: var(--text);
}

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

.country-links a {
    font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 48px 0 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 13.5px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-col p {
    font-size: 13.5px;
    margin-bottom: 10px;
}

.footer-col .btn {
    margin-top: 8px;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer-legal {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 12.5px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #fff;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .header-nav {
        display: none;
    }

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

    .use-case-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-section h2 {
        font-size: 1.35rem;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

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

    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .final-cta {
        padding: 32px 24px;
    }

    .cta-inline {
        padding: 28px 20px;
    }

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

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

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .step-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.5rem;
    }

    .toc-box {
        padding: 20px;
    }

    .callout-box {
        padding: 18px 20px;
    }

    .article-meta {
        font-size: 12px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .announcement-bar,
    .site-header,
    .breadcrumb-wrap,
    .blog-sidebar,
    .site-footer,
    .cta-inline,
    .final-cta {
        display: none;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}/* End custom CSS */