.special-offer-wrapper {
    margin-bottom: 48px;
}

.special-offer-card {
    position: relative;
    background-image: linear-gradient(to right, #1d4ed8, #1e3a8a);
    color: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all 0.3s ease;
}

.special-offer-card:hover {
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.decorative-icon {
    position: absolute;
    top: 32px;
    right: 32px;
    opacity: 0.2;
    transform: rotate(-12deg);
}

.decorative-icon svg {
    width: 96px;
    height: 96px;
    color: #facc15;
    fill: currentColor;
}

.special-offer-content {
    position: relative;
    padding: 32px;
}

.special-offer-badge {
    display: inline-block;
    background-color: #facc15;
    color: #1e3a8a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 9999px;
}

.special-offer-content h3 {
    margin-top: 24px;
    font-size: 1.875rem;
    font-weight: 700;
}

.special-offer-content p {
    margin-top: 16px;
    font-size: 1.125rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(219, 234, 254, 0.7);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dbeafe;
    border-radius: 9999px;
    margin-bottom: 20px;
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #1d4ed8;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: #4b5563;
}

.promo-button {
    display: inline-block;
    background-color: #373737;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.promo-button:hover {
    background-color: #212529;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }

    .section-header .intro-text,
    .section-header .subtitle {
        font-size: 1.25rem;
    }

    .special-offer-wrapper {
        margin-bottom: 64px;
    }

    .special-offer-content {
        padding: 48px;
    }

    .special-offer-content h3 {
        font-size: 2.25rem;
    }

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.j-new-table-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

/* Table/Grid Container */
.j-new-table-container {
    max-width: 1200px;
    /* Increased width for 4 columns */
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    border-top: 5px solid #df0e0e;
    /* Red accent at top */
}

/* Header Style */
.j-new-table-header {
    background-color: #1e3a8a;
    /* Deep Blue */
    color: #ffffff;
    padding: 25px;
    text-align: center;
}

.j-new-table-header h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Grid Layout for content - CHANGED TO 4 COLUMNS */
.j-new-table-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns like a table row */
    border-bottom: 1px solid #eee;
}

/* Individual Feature Cell */
.j-new-table-cell {
    padding: 30px 20px;
    border-right: 1px solid #eee;
    /* Vertical lines like a table */
    border-bottom: none;
    /* No bottom border needed for single row */
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Remove right border for the last item */
.j-new-table-cell:last-child {
    border-right: none;
}

/* Hover Effect */
.j-new-table-cell:hover {
    background-color: #fafafa;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 1;
    /* Bring to front on hover */
}

.j-new-table-cell:hover .j-new-table-icon {
    background-color: #df0e0e;
    color: #fff;
    border-color: #df0e0e;
}

/* Icon Styling */
.j-new-table-icon-wrapper {
    margin-bottom: 15px;
}

.j-new-table-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #1e3a8a;
    /* Blue Border */
    color: #1e3a8a;
    /* Blue Icon */
    font-size: 24px;
    transition: all 0.3s ease;
}

.j-new-table-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Title Styling */
.j-new-table-title {
    color: #1e3a8a;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 44px;
    /* Fixed height for alignment */
    display: flex;
    align-items: center;
}

/* Price Highlight inside Title */
.j-new-table-highlight {
    color: #df0e0e;
    font-weight: 600;
}

/* Description Text Styling */
.j-new-table-desc {
    color: black;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

/* Responsive Design */

/* Tablet: 2 Columns */
@media (max-width: 1024px) {
    .j-new-table-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .j-new-table-cell {
        border-bottom: 1px solid #eee;
    }

    .j-new-table-cell:nth-child(2n) {
        border-right: none;
    }

    .j-new-table-cell:nth-child(3),
    .j-new-table-cell:nth-child(4) {
        border-bottom: none;
    }
}

/* Mobile: 1 Column */
@media (max-width: 768px) {
    .j-new-table-grid {
        grid-template-columns: 1fr;
    }

    .j-new-table-cell {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .j-new-table-cell:last-child {
        border-bottom: none;
    }

    .j-new-table-title {
        height: auto;
    }
}

.g-tutorial-contents {
    padding: 20px 40px !important;
}

/* --- FAQ SECTION STYLES --- */
.j-new-blog-faq-section {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.j-new-blog-faq-container {
    max-width: 1100px;
    width: 100%;
}

.j-new-blog-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.j-new-blog-faq-title {
    color: #1e3a8a;
    /* Deep Blue */
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Underline decoration for title */
.j-new-blog-faq-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #df0e0e;
    /* Red Accent */
    margin: 10px auto 0;
    border-radius: 2px;
}

.j-new-blog-faq-subtitle {
    color: #555;
    font-size: 16px;
}

/* Accordion Item */
.j-new-blog-faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.j-new-blog-faq-item:hover {
    border-color: #1e3a8a;
}

/* Question Header */
.j-new-blog-faq-question {
    background: #fcfcfc;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.j-new-blog-faq-question h3.j-new-blog-faq-question-text {
    color: black;
    font-size: 18px !important;
    font-weight: 600;
    margin: 0;
}

/* Icon State */
.j-new-blog-faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.j-new-blog-faq-icon::before,
.j-new-blog-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #1e3a8a;
    transition: transform 0.3s ease;
}

.j-new-blog-faq-icon::before {
    width: 2px;
    height: 100%;
}

.j-new-blog-faq-icon::after {
    width: 100%;
    height: 2px;
}

/* Answer Content */
.j-new-blog-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fff;
}

.j-new-blog-faq-answer-inner {
    padding: 0 25px 25px;
    color: black;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    border-top: 1px solid transparent;
}

/* Active State */
.j-new-blog-faq-item.active {
    border-color: #df0e0e;
    /* Red Border when active */
    box-shadow: 0 5px 15px rgba(223, 14, 14, 0.08);
}

.j-new-blog-faq-item.active .j-new-blog-faq-question-text {
    color: #df0e0e;
    /* Red Text when active */
}

.j-new-blog-faq-item.active .j-new-blog-faq-icon::before {
    transform: rotate(90deg);
    /* Makes it a minus */
    background-color: #df0e0e;
}

.j-new-blog-faq-item.active .j-new-blog-faq-icon::after {
    background-color: #df0e0e;
    transform: rotate(180deg);
}

.j-new-blog-faq-item.active .j-new-blog-faq-answer-inner {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.j-new-blog-faq-question h3 {
    font-size: 16px !important;
}

.j-new-blog-img {
    width: 50%;
    margin: 10px auto;
}

.j-new-blog-img img {
    width: 100%;
    border-radius: 20px;
}

.j-new-link {
    color: #920000;
    font-weight: 600;
}

.j-new-link:hover {
    color: #700202;
}

.pricing-card-list {
    color: black;
    font-weight: 500;
}

.pricing-tick-flex {
   
    margin-top: 14px;
}

.pricing-card-list {
    margin: 0 !important;
}

.j-new-host-asia-pro-cron-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

@media (min-width: 992px) {
    .j-new-host-asia-pro-cron-container {
        max-width: 95%;
        margin: 0 auto;
    }
}

/* Box Card Styling */
.j-new-host-asia-pro-cron-card {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: all 0.3s ease;
}



.j-new-host-asia-pro-cron-pros .j-new-host-asia-pro-cron-title {
    color: #16a34a;
}

.j-new-host-asia-pro-cron-pros .j-new-host-asia-pro-cron-icon {
    color: #16a34a;
    background-color: #dcfce7;
}



.j-new-host-asia-pro-cron-cons .j-new-host-asia-pro-cron-title {
    color: #000000;
}

.j-new-host-asia-pro-cron-cons .j-new-host-asia-pro-cron-icon {
    color: #ffffff;
    background-color: #000000;
}

/* Typography & List Styling */
.j-new-host-asia-pro-cron-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.j-new-host-asia-pro-cron-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.j-new-host-asia-pro-cron-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    line-height: 1.6;
}

.j-new-host-asia-pro-cron-item:last-child {
    margin-bottom: 0;
}

.j-new-host-asia-pro-cron-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    margin-top: 2px;
}

.j-new-host-asia-pro-cron-text {
    font-size: 16px;
}

.j-new-host-asia-pro-cron-text strong {
    color: #1f2937;
    font-weight: 600;
}

.j-new-host-asia-compare-table-container {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin: 40px 0;
}

/* Responsive horizontal scroll for smaller screens */
.j-new-host-asia-compare-table-wrapper {
    overflow-x: auto;
}

.j-new-host-asia-compare-table-main {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 900px;
    /* Forces scroll on mobile instead of squishing text */
}

.j-new-host-asia-compare-table-th,
.j-new-host-asia-compare-table-td {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 15px;
    vertical-align: top;
    line-height: 1.5;
}

.j-new-host-asia-compare-table-th {
    background-color: #f3f4f6;
    font-weight: 700;
    color: #1f2937;
    white-space: nowrap;
}

.j-new-host-asia-compare-table-td strong {
    color: #1f2937;
    font-weight: 600;
}


.j-new-host-asia-compare-table-highlight {
    background-color: #fdf0f0;
    /* Very light green */
    border-left: 2px solid #ffcaca;
    border-right: 2px solid #ffcaca;
    color: #9f0000;
    font-weight: 600;
}

.j-new-host-asia-compare-table-th.j-new-host-asia-compare-table-highlight {
    background-color: #ffcaca;
    color: #9f0000;
    border-top: 2px solid #ffcaca;
    border-left: 2px solid #ffcaca;
    border-right: 2px solid #ffcaca;
    font-size: 18px;
    text-align: center;
}

.j-new-host-asia-compare-table-main tr:last-child .j-new-host-asia-compare-table-td {
    border-bottom: none;
}

.j-new-host-asia-compare-table-main tr:last-child .j-new-host-asia-compare-table-highlight {
    border-bottom: 2px solid #ffcaca;
}


.j-new-host-asia-compare-table-main tbody tr:hover {
    background-color: #f8fafc;
}

.j-new-host-asia-compare-table-main tbody tr:hover .j-new-host-asia-compare-table-highlight {
    background-color: #fcdcdc;
}