.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.news-card-img {
    position: relative;
    overflow: hidden;
}
.news-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news-card:hover .news-card-img img {
    transform: scale(1.05);
}
.news-card-body {
    padding: 20px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #000;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.news-card-meta span {
    display: flex;
    align-items: center;
}
.news-card-meta .separator {
    color: #000;
}
.news-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 12px;
}
.news-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}
.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a00ff;
    text-decoration: none;
    transition: gap 0.3s ease;
}
.news-card-link:hover {
    gap: 12px;
    color: #1100a8ff;
}
.news-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.news-card-link:hover svg {
    transform: translateX(3px);
}
.page-news {
    padding: 60px 0;
    background: #f8f9fa;
}
.page-news .row {
    display: flex;
    flex-wrap: wrap;
}
.page-news .row > [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}
.page-news .row > [class*="col-"] .news-card {
    margin-bottom: 0;
}

/* ---- News Pagination ---- */
.nw-pagination {
    padding: 50px 0 20px;
    text-align: center;
}
.nw-pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.nw-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    border: 2px solid #e0e2ea;
    background: #fff;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}
.nw-page-btn:hover {
    border-color: #1a00ff;
    color: #1a00ff;
    background: #eef0ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26,0,255,0.1);
}
.nw-page-active {
    background: #1a00ff;
    color: #fff;
    border-color: #1a00ff;
    cursor: default;
    box-shadow: 0 4px 16px rgba(26,0,255,0.25);
}
.nw-page-active:hover {
    background: #1a00ff;
    color: #fff;
    transform: none;
    box-shadow: 0 4px 16px rgba(26,0,255,0.25);
}
.nw-page-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.nw-page-disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: #e0e2ea;
    background: #fff;
    color: #1a1a2e;
}
.nw-page-prev,
.nw-page-next {
    min-width: 44px;
    padding: 0;
}
.nw-page-prev svg,
.nw-page-next svg {
    display: block;
}
.nw-page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 44px;
    font-size: 16px;
    font-weight: 700;
    color: #999;
    letter-spacing: 2px;
    cursor: default;
}
.nw-pagination-info {
    font-size: 13px;
    color: #888;
    margin: 0;
}
@media (max-width: 576px) {
    .nw-pagination {
        padding: 35px 0 15px;
    }
    .nw-pagination-list {
        gap: 6px;
    }
    .nw-page-btn {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 13px;
        border-radius: 8px;
    }
    .nw-page-prev,
    .nw-page-next {
        min-width: 38px;
    }
    .nw-page-ellipsis {
        min-width: 28px;
        height: 38px;
    }
}

/* Trust Stats Section - Escrow Page */
.trust-stats-section {
    padding: 60px 0;
    background: #fff;
}
.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}
.stat-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #5a6a7a;
    text-align: center;
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 14px;
    color: #8a9aa9;
    margin: 0;
}
.stat-item.stat-award {
    display: flex;
    align-items: center;
    gap: 15px;
}
.stat-item.stat-award .bbb-icon {
    width: 50px;
    height: auto;
}
.stat-item.stat-award h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}
.stat-item.stat-award p {
    font-size: 13px;
    color: #666;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: #ddd;
}
.partner-logos {
    display: flex;
    align-items: center;
    gap: 25px;
}
.partner-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}
.partner-logos img:hover {
    filter: grayscale(0%);
}
.trust-message {
    text-align: center;
    padding-top: 50px;
}
.trust-message h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}
.trust-message p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}
@media (max-width: 991px) {
    .stats-row {
        justify-content: center;
    }
    .stat-divider {
        display: none;
    }
    .stat-item, .partner-logos {
        text-align: center;
        width: 45%;
        margin-bottom: 20px;
    }
    .stat-item.stat-award {
        flex-direction: column;
        text-align: center;
    }
    .partner-logos {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .trust-message h2 {
        font-size: 28px;
    }
}
@media (max-width: 576px) {
    .stat-item, .partner-logos {
        width: 100%;
    }
    .trust-message h2 {
        font-size: 24px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}
.faq-section .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}
.faq-section .section-title p {
    font-size: 16px;
    color: #666;
}
