.elementor-23517 .elementor-element.elementor-element-23b5164{--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-03fa726 *//* ===========================
   CSS Reset & Base Styles
   =========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #fff;
}

a {
    color: #c8102e;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #9a0c23;
    text-decoration: underline;
}

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

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

/* ===========================
   Announcement Bar
   =========================== */
.announcement-bar {
    background-color: #1a1a2e;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.announcement-bar p {
    margin: 0;
}

/* ===========================
   Header
   =========================== */
.site-header {
    background-color: #fff;
    border-bottom: 3px solid #c8102e;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    max-height: 55px;
    width: auto;
}

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

.header-nav a {
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.header-nav a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom-color: #c8102e;
}

/* ===========================
   Breadcrumb
   =========================== */
.breadcrumb-wrapper {
    background-color: #f5f5f5;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.breadcrumb li::after {
    content: "›";
    margin-left: 8px;
    color: #999;
}

.breadcrumb li:last-child::after {
    content: none;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb a:hover {
    color: #c8102e;
}

.breadcrumb li:last-child {
    color: #333;
    font-weight: 600;
}

/* ===========================
   Blog Layout
   =========================== */
.blog-main {
    padding: 40px 0 60px;
    background-color: #fafafa;
}

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

/* ===========================
   Blog Content
   =========================== */
.blog-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.post-header {
    padding: 35px 40px 25px;
}

.post-category {
    display: inline-block;
    background-color: #c8102e;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 3px;
    margin-bottom: 16px;
}

.post-header h1 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2.1rem;
    line-height: 1.3;
    color: #1a1a2e;
    margin-bottom: 16px;
    font-weight: 700;
}

.post-meta {
    font-size: 0.85rem;
    color: #777;
}

.meta-separator {
    margin: 0 8px;
    color: #ccc;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-body {
    padding: 35px 40px 45px;
}

.post-body h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.55rem;
    color: #1a1a2e;
    margin-top: 40px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    line-height: 1.35;
}

.post-body h2:first-child {
    margin-top: 0;
}

.post-body h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.15rem;
    color: #1a1a2e;
    margin-top: 25px;
    margin-bottom: 12px;
}

.post-body p {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.post-body li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #444;
}

.post-body strong {
    color: #333;
}

/* ===========================
   Disclaimer Box
   =========================== */
.disclaimer-box {
    background-color: #fff8e1;
    border-left: 4px solid #f9a825;
    padding: 18px 22px;
    margin: 25px 0;
    border-radius: 0 6px 6px 0;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #5d4037;
    line-height: 1.6;
}

/* ===========================
   Benefits Grid
   =========================== */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.benefit-card {
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 22px;
    transition: box-shadow 0.2s ease;
}

.benefit-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
    font-size: 1.05rem;
    color: #c8102e;
    margin-top: 0;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.92rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===========================
   Step List
   =========================== */
.step-list {
    margin: 25px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #c8102e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-top: 4px;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #1a1a2e;
}

.step-content p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.step-content ul {
    margin-top: 8px;
}

/* ===========================
   Comparison Table
   =========================== */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.comparison-table th {
    background-color: #1a1a2e;
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #e8e8e8;
    color: #444;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tr:hover {
    background-color: #f0f0f5;
}

/* ===========================
   Testimonial Block
   =========================== */
.testimonial-block {
    background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
    border-radius: 8px;
    padding: 30px 35px;
    margin: 30px 0;
}

.testimonial-block blockquote {
    margin: 0;
}

.testimonial-block p {
    color: #e8e8f0;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.testimonial-block cite {
    color: #f9a825;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
}

/* ===========================
   CTA Box
   =========================== */
.cta-box {
    background: linear-gradient(135deg, #c8102e, #a00d24);
    border-radius: 10px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.cta-box h2 {
    color: #fff !important;
    border-bottom: none !important;
    margin-top: 0 !important;
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.cta-box p {
    color: #f5d5d5;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

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

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #c8102e;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: #f9a825;
    color: #1a1a2e;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 6px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #fff;
    color: #c8102e;
    text-decoration: none;
}

.cta-note {
    font-size: 0.85rem !important;
    color: #f5c5c5 !important;
    margin-bottom: 0 !important;
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    margin: 25px 0;
}

.faq-item {
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 22px 26px;
    margin-bottom: 16px;
}

.faq-item h3 {
    font-size: 1.05rem;
    color: #1a1a2e;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #555;
    line-height: 1.7;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

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

.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c8102e;
}

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

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

.sidebar-links a {
    color: #444;
    font-size: 0.9rem;
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.sidebar-links a:hover {
    color: #c8102e;
    text-decoration: none;
    padding-left: 6px;
}

.sidebar-links li:last-child a {
    border-bottom: none;
}

.cta-widget {
    background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
    color: #fff;
}

.cta-widget h3 {
    color: #fff;
    border-bottom-color: #f9a825;
}

.cta-widget p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-sidebar {
    display: inline-block;
    background: #c8102e;
    color: #fff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.btn-sidebar:hover {
    background: #f9a825;
    color: #1a1a2e;
    text-decoration: none;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 7px 0;
    font-size: 0.9rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    padding: 6px 0;
    font-size: 0.9rem;
}

.contact-list a {
    color: #444;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background-color: #1a1a2e;
    color: #ccc;
}

.footer-top {
    padding: 50px 0 40px;
    border-bottom: 1px solid #333;
}

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

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 700;
}

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

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

.footer-col a {
    color: #999;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

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

.footer-col p {
    font-size: 0.88rem;
    color: #999;
    line-height: 1.5;
    margin-bottom: 12px;
}

.btn-footer {
    display: inline-block;
    background: #c8102e;
    color: #fff;
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-footer:hover {
    background: #f9a825;
    color: #1a1a2e;
    text-decoration: none;
}

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

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

.footer-bottom p {
    font-size: 0.82rem;
    color: #777;
    margin: 0;
}

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

.footer-legal a {
    color: #777;
    font-size: 0.82rem;
}

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

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .header-container {
        flex-direction: column;
        gap: 12px;
    }

    .header-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .header-nav a {
        font-size: 0.8rem;
    }

    .post-header {
        padding: 25px 24px 20px;
    }

    .post-header h1 {
        font-size: 1.6rem;
    }

    .post-body {
        padding: 25px 24px 35px;
    }

    .post-body h2 {
        font-size: 1.3rem;
    }

    .featured-image {
        height: 250px;
    }

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

    .step {
        flex-direction: column;
        gap: 12px;
    }

    .cta-box {
        padding: 30px 24px;
    }

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

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

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

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

    .testimonial-block {
        padding: 22px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

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

    .site-logo {
        max-height: 40px;
    }

    .announcement-bar {
        font-size: 0.7rem;
    }

    .header-nav ul {
        gap: 8px;
    }

    .header-nav a {
        font-size: 0.72rem;
    }
}/* End custom CSS */