 .pricing-section-container {
        padding: 60px 15px;
    }

    .pricing-section-title {
        text-align: center;
        margin-bottom: 40px;
    }

    .pricing-section-title h2 {
        font-weight: 700;
        color: #343a40;
    }

    .pricing-section-title p {
        color: #6c757d;
        font-size: 1.1rem;
    }

    /* Card Styling */
    .pricing-card {
        border: none;
        border-radius: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        position: relative;
    }

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .pricing-card .card-header {
        background-color: transparent;
        border-bottom: 1px solid #eee;
        padding: 25px 20px;
        text-align: center;
    }

    .pricing-card .card-header h3 {
        font-weight: 700;
        margin-bottom: 5px;
        color: #007bff;
    }

    .package-subtitle {
        font-size: 1.1rem;
        color: #6c757d;
        font-weight: bold;
    }

    .price {
        text-align: center;
        margin-bottom: 25px;
    }

    .price .amount {
        font-size: 2.5rem;
        font-weight: 700;
        color: #343a40;
    }

    .setup-fee {
        color: #6c757d;
        font-size: 0.9rem;
    }

    .commission {
        text-align: center;
        font-size: 1.2rem;
        font-weight: bold;
        color: #28a745;
        margin-bottom: 25px;
    }
    .commissionsmall {
        text-align: center;
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 25px;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .features-list li {
        padding: 12px 0;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #f2f2f2;
    }

    .features-list li:last-child {
        border-bottom: none;
    }

    .icon-check {
        color: #28a745;
        margin-right: 10px;
        font-size: 1.2rem;
    }

    .btn-choose {
        width: 100%;
        padding: 12px;
        font-weight: bold;
        border-radius: 8px;
    }

    /* Highlighted Plan */
    .highlight-card {
        border: 2px solid #007bff;
        transform: scale(1.03);
    }

    .highlight-card .card-header {
        background-color: #007bff;
    }

    .highlight-card .card-header h3,
    .highlight-card .package-subtitle {
        color: #fff;
    }

    .highlight-card .btn-choose {
        background-color: #007bff;
        color: #fff;
    }

    .highlight-card .btn-choose:hover {
        background-color: #0056b3;
    }

    /* Popular Badge */
    .badge-popular {
        position: absolute;
        top: -10px;
        right: 15px;
        background: #ffc107;
        color: #000;
        font-weight: bold;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 0.9rem;
    }