.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: #233a5e;
    background-color: #ffffff;
    border: 1.5px solid #e1e8ed;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.pagination li a:hover {
    color: #ffffff;
    background-color: #ff2a52;
    border-color: #ff2a52;
    box-shadow: 0 4px 10px rgba(255, 42, 82, 0.25);
}

/* Active Page Style */
.pagination li.active a,
.pagination li.active a:hover {
    color: #ffffff;
    background-color: #ff2a52;
    border-color: #ff2a52;
    box-shadow: 0 4px 12px rgba(255, 42, 82, 0.35);
    cursor: default;
}

/* Prev & Next Buttons Style */
.pagination li.prev a,
.pagination li.next a {
    font-weight: 700;
    background-color: #f4f7f9;
    border-color: #dbe2e8;
}

.pagination li.prev a:hover,
.pagination li.next a:hover {
    background-color: #233a5e;
    border-color: #233a5e;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(35, 58, 94, 0.25);
}

/* Disabled State (In case needed) */
.pagination li.disabled a {
    color: #a0aec0;
    background-color: #f7fafc;
    border-color: #edf2f7;
    cursor: not-allowed;
    pointer-events: none;
}


 .pricing-section {
        background-color: #f8fafc;
    }

    .package-card {
        background: #ffffff;
        border: 1px solid #e1e8ed;
        border-radius: 12px;
        padding: 35px 25px;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .package-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    /* Featured / Most Popular Card */
    .package-card.featured {
        border: 2px solid #ff2a52;
        transform: scale(1.03);
        box-shadow: 0 10px 30px rgba(255, 42, 82, 0.15);
    }

    .package-card.featured:hover {
        transform: scale(1.03) translateY(-8px);
    }

    .popular-badge {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: #ff2a52;
        color: #fff;
        padding: 4px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .package-title {
        font-size: 22px;
        font-weight: 700;
        color: #233a5e;
        margin-bottom: 15px;
    }

    .package-price {
        margin-bottom: 25px;
        color: #ff2a52;
    }

    .package-price .currency {
        font-size: 20px;
        font-weight: 600;
        vertical-align: top;
    }

    .package-price .price {
        font-size: 44px;
        font-weight: 800;
        line-height: 1;
    }

    .package-price .period {
        font-size: 14px;
        color: #6c757d;
    }

    .package-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .package-features li {
        padding: 12px 0;
        border-bottom: 1px dashed #eef2f5;
        font-size: 15px;
        color: #555;
    }

    .package-features li i {
        margin-right: 10px;
        font-size: 14px;
    }

    .package-features li.disabled {
        color: #a0aec0;
        text-decoration: line-through;
    }

    .btn-main-outline {
        display: inline-block;
        background: transparent;
        color: #233a5e;
        border: 2px solid #233a5e;
        padding: 10px 24px;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn-main-outline:hover {
        background: #233a5e;
        color: #ffffff;
    }





/* Custom FAQ Accordion Styles */
.faq-section {
    background-color: #ffffff;
}

.faq-item {
    border: 1px solid #e1e8ed;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.faq-item .card-header {
    background-color: #ffffff;
    border-bottom: none;
    padding: 0;
}

.faq-item .btn-link {
    color: #233a5e;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-item .btn-link:hover {
    color: #ff2a52;
}

.faq-item .btn-link i {
    transition: transform 0.3s ease;
    color: #ff2a52;
    margin-top: 3px;
}

.faq-item .btn-link.collapsed i {
    transform: rotate(-90deg);
    color: #707b8e;
}

.faq-item .card-body {
    border-top: 1px dashed #e1e8ed;
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
    padding: 20px 22px;
    background-color: #fafbfc;
}