html,
body {
    overflow-x: hidden;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    /* optional: for breathing room */
}


/* Allow some shortcodes to break out full-width */

.full-bleed {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}

.full-bleed .hero-section {
    max-width: 100%;
}

.background-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    background-color: #990e05;
    z-index: 1;
}

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #ff512f, #dd2476);
    padding: 45px 20px;
    overflow: hidden;
}

.hero-section .background-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    background-color: #990e05;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    flex: 1 1 500px;
}

.hero-left h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.version {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.btn-download {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.verified h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.verified-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.verified-logos img {
    height: 32px;
}

.secure-text {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.6;
}

.hero-right {
    flex: 1 1 400px;
    text-align: center;
}

.hero-right img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}


/* Responsive Breakpoints */

@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-left,
    .hero-right {
        flex: 1 1 100%;
    }
    .hero-left h1 {
        font-size: 2rem;
    }
    .version {
        font-size: 1rem;
    }
    .btn-download {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    .verified-logos img {
        height: 28px;
    }
    .verified-logos {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-left h1 {
        font-size: 1.6rem;
    }
    .version {
        font-size: 0.9rem;
    }
    .btn-download {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    .verified h3 {
        font-size: 1rem;
    }
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    width: 180px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #222;
}


/* Responsive */

@media (max-width: 768px) {
    .features-grid {
        gap: 20px;
    }
    .feature-box {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .feature-box {
        width: 100%;
    }
}

.feature-highlight {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.highlight-box {
    background: linear-gradient(135deg, #990e05, #ff512f);
    border-radius: 15px;
    padding: 30px 20px;
    width: 100%;
    max-width: 800px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.highlight-box:hover {
    transform: translateY(-4px);
}

.highlight-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.highlight-box img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid #fff;
}


/* Responsive */

@media (max-width: 768px) {
    .highlight-box {
        padding: 30px 15px;
    }
    .highlight-box h2 {
        font-size: 1.5rem;
    }
    .highlight-box img {
        max-width: 90%;
    }
}

.footer-menu {
    display: flex;
    gap: 25px;
}

.footer-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    display: inline-block;
}

.footer-menu li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: #990e05;
}


/* Download button (your anchor with class="download-btn") */

.download-btn {
    display: block;
    /* makes margin auto work */
    width: fit-content;
    /* shrink to content */
    margin: 20px auto;
    /* centers horizontally */
    background: #1a9b50;
    color: #fff !important;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    transition: .25s ease;
}

.download-btn:hover {
    background: #158443;
    transform: translateY(-2px);
}


/* Optional: center section headings */

.page-section .container h1,
.page-section .container h2,
.page-section .container h3 {
    text-align: center;
}


/* Tip/note box under the button (your <p class="note">...) */

.note {
    width: min(900px, 95%);
    margin: 16px auto 28px;
    /* centered block */
    padding: 14px 18px;
    background: #fff4e5;
    border-left: 6px solid #f0b429;
    border-radius: 8px;
    color: #5c4b2a;
}


/* ================================
   TABLES: centered + clean look
   Targets the classes you used:
   .table, .table-striped, .table-bordered, .table-compare, .table-grid
=================================== */

.ck-content table {
    width: min(900px, 95%);
    /* keeps table narrow and centered */
    margin: 24px auto;
    /* centers table */
    border-collapse: collapse;
    background: #fff;
}

.ck-content table th,
.ck-content table td {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    /* subtle border */
    text-align: left;
    /* keep content readable */
    vertical-align: top;
    line-height: 1.5;
}


/* Header row */

.ck-content table thead th {
    background: #f3f4f6;
    font-weight: 700;
}


/* Striped rows for .table-striped */

.table-striped tbody tr:nth-child(odd) {
    background: #fafafa;
}


/* Extra emphasis for comparison table headings */

.table-compare thead th {
    text-align: center;
}

.ck-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0 !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
}

.ck-content table th,
.ck-content table td {
    border: 1px solid #ddd !important;
    padding: 12px !important;
    text-align: left !important;
    font-size: 0.95rem !important;
}

.ck-content table th {
    background-color: #e6ffe6 !important;
    font-weight: bold !important;
}


/* Make tables scroll nicely on very small screens */

@media (max-width: 640px) {
    .ck-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}


/* ================================
   LISTS & PARAGRAPHS: center the block,
   keep bullets aligned left.
=================================== */

.page-section .container p,
.page-section .container ul,
.page-section .container ol {
    width: min(900px, 95%);
    margin-left: auto;
    /* center the block */
    margin-right: auto;
}

.page-section .container ul,
.page-section .container ol {
    padding-left: 1.25rem;
    /* bullet/number indentation */
}


/* Two-column Pros & Cons table spacing (your .table-grid) */

.table-grid ul {
    margin: 0;
    padding-left: 1.1rem;
}


/* ===== DOWNLOAD SECTION ===== */

.download-section {
    padding: 60px 20px !important;
    background: #ffffff !important;
}

.download-section h1 {
    font-size: 2.2rem !important;
    margin-bottom: 20px !important;
    color: #990e05 !important;
    text-align: center !important;
}

.download-intro {
    font-size: 1.1rem !important;
    color: #333 !important;
    max-width: 750px !important;
    margin: 0 auto 40px !important;
    text-align: center !important;
    line-height: 1.7 !important;
}


/* Download Box */

.download-box {
    background: #f9f9f9 !important;
    border: 1px solid #ddd !important;
    border-radius: 12px !important;
    padding: 30px !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.download-box ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 25px !important;
}

.download-box li {
    font-size: 1rem !important;
    color: #111 !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #eee !important;
    list-style: none !important;
}

.download-box li:last-child {
    border-bottom: none !important;
}


/* Download Button */

.download-btn {
    background: #1a9b50 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 12px 25px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: background 0.3s ease !important;
}

.download-btn:hover {
    background: #158443 !important;
    color: #fff !important;
}


/* Install Note */

.note {
    font-size: 0.95rem !important;
    color: #666 !important;
    margin-top: 15px !important;
    background: #fff5e6 !important;
    padding: 12px 16px !important;
    border-left: 4px solid #ffc107 !important;
    border-radius: 6px !important;
}


/* Responsive */

@media (max-width: 768px) {
    .download-section {
        padding: 40px 15px !important;
    }
    .download-box {
        padding: 20px !important;
    }
    .download-btn {
        width: auto !important;
        text-align: center !important;
    }
}