.elementor-10792 .elementor-element.elementor-element-6eafd7c{--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 */:root {
    --color-primary: #1a4d8c;
    --color-primary-dark: #0f3460;
    --color-primary-light: #2d6cb5;
    --color-accent: #e8a838;
    --color-accent-dark: #d49520;
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-alt: #f0f4f8;
    --color-border: #e0e0e0;
    --shadow-sm: 0 2px 4px 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: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

/* ===== BASE STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-accent);
}

h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    color: var(--color-primary);
}

h4 {
    font-size: 1.1rem;
    color: var(--color-text);
}

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 600;
}

/* ===== SECTIONS ===== */
.blog-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.blog-section:last-child {
    border-bottom: none;
}

/* ===== HERO SECTION ===== */
.blog-hero {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
    padding: 3rem 0;
}

.blog-hero h1 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.category-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image {
    margin-top: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* ===== INFO BOXES ===== */
.info-box {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.info-box h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.info-box.success {
    background: #e8f5e9;
    border-color: var(--color-success);
}

.info-box.warning {
    background: #fff8e1;
    border-color: var(--color-warning);
}

.info-box.tip {
    background: #e3f2fd;
    border-color: var(--color-primary);
}

.info-box.important {
    background: #fce4ec;
    border-color: var(--color-danger);
}

/* ===== BLOCKQUOTE ===== */
.highlight-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-primary);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ===== FEATURE LIST ===== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.check-icon {
    flex-shrink: 0;
    color: var(--color-success);
    font-weight: bold;
}

/* ===== SECTION IMAGES ===== */
.section-image {
    margin: 2rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.section-image.centered {
    text-align: center;
}

.section-image img {
    width: 100%;
}

/* ===== COMPARISON GRID ===== */
.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.comparison-card {
    background: var(--color-bg-light);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.comparison-card.highlight {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
}

.comparison-card h4 {
    margin-bottom: 0.5rem;
}

.comparison-card p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-light);
}

.tag.recommended {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 600;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed var(--color-border);
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h5 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--color-primary-dark);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.step-content em {
    color: var(--color-accent-dark);
}

/* ===== TIMELINE ===== */
.timeline {
    margin: 2rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding: 1rem 0 1.5rem 1.5rem;
}

.timeline-marker {
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.timeline-content ul {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.timeline-content li {
    margin-bottom: 0.35rem;
}

/* ===== TOOLS GRID ===== */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.tool-card {
    background: var(--color-bg-light);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.tool-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tool-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.tool-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tool-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.tool-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.comparison-table table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background: var(--color-primary-dark);
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.comparison-table tr:nth-child(even) {
    background: var(--color-bg-light);
}

.status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}

.status.possible {
    background: #c8e6c9;
    color: #2e7d32;
}

.status.partial {
    background: #fff9c4;
    color: #f57f17;
}

.status.limited {
    background: #ffcdd2;
    color: #c62828;
}

/* ===== RISK GRID ===== */
.risk-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.risk-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--color-bg);
}

.risk-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
}

.risk-header.negative {
    background: #fff3e0;
    border-bottom: 1px solid #ffcc80;
}

.risk-header h4 {
    margin: 0;
    font-size: 0.95rem;
}

.risk-icon {
    font-size: 1.1rem;
}

.risk-body {
    padding: 1rem;
}

.risk-body p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.risk-body p:last-child {
    margin-bottom: 0;
}

/* ===== FAQ SECTION ===== */
.faq-list {
    margin: 1.5rem 0;
}

.faq-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
    cursor: pointer;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    padding-left: 0.5rem;
    border-left: 3px solid var(--color-accent);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--color-bg-alt);
}

.cta-box {
    text-align: center;
    padding: 2rem 1rem;
}

.cta-box h2 {
    border: none;
    padding-bottom: 0;
    margin-top: 0;
}

.cta-box p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-align: center;
    text-decoration: none;
    transition: all var(--transition);
    min-width: 200px;
}

.btn-primary {
    background: var(--color-success);
    color: white;
}

.btn-primary:hover {
    background: #218838;
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: var(--color-primary);
    color: white;
}

.btn-secondary:hover {
    background: var(--color-primary-dark);
    color: white;
    text-decoration: none;
}

/* ===== RELATED SECTION ===== */
.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.related-card {
    display: block;
    background: var(--color-bg-light);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    text-decoration: none;
}

.related-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.related-card h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--color-primary);
}

.related-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ===== CTA TEXT ===== */
.cta-text {
    background: var(--color-bg-alt);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 2rem;
}


/* =============================================
   TABLET BREAKPOINT (min-width: 600px)
   ============================================= */
@media (min-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    .blog-hero {
        padding: 4rem 0;
    }

    .blog-hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .blog-section {
        padding: 3.5rem 0;
    }

    .comparison-grid {
        flex-direction: row;
    }

    .comparison-card {
        flex: 1;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .risk-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =============================================
   DESKTOP BREAKPOINT (min-width: 900px)
   ============================================= */
@media (min-width: 900px) {
    .container {
        max-width: 900px;
        padding: 0 40px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .blog-hero {
        padding: 5rem 0;
    }

    .blog-hero h1 {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-content {
        max-width: 80%;
    }

    .blog-section {
        padding: 4rem 0;
    }

    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step {
        padding: 1.25rem 0;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .highlight-quote {
        font-size: 1.25rem;
        padding: 1.5rem 2rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }
}


/* =============================================
   LARGE DESKTOP BREAKPOINT (min-width: 1200px)
   ============================================= */
@media (min-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .blog-hero h1 {
        font-size: 3rem;
    }
}/* End custom CSS */