/* ==========================================================================
   Pricing Section – Reduced by 60%
   ========================================================================== */

.pricing {
    padding: 16px;
    /* further reduced */
    max-width: 620px;
    /* reduced */
    margin: 5px auto;
}

.pricing .intro-text {
    font-size: 12.8px;
    /* reduced */
    line-height: 1.5;
    margin-bottom: 5px;
    text-align: center;
}

.pricing .pricing-section {
    margin-bottom: 12px;
    /* reduced */
}

.pricing .pricing-section h3 {
    font-size: 15.5px;
    /* reduced */
    font-weight: 700;
    color: #1a3c5e;
    margin-bottom: 8px;
    /* reduced */
    text-align: center;
}

.pricing .pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 5px;
    /* reduced */
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-table th,
.pricing .pricing-table td {
    padding: 6px 9px;
    /* reduced */
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.pricing .pricing-table th {
    background-color: #1a3c5e;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing .pricing-table td {
    font-size: 12.8px;
    /* reduced */
}

.pricing .pricing-table tbody tr {
    position: relative;
    background-color: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.pricing .pricing-table tbody tr:hover {
    background-color: #ffffff;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.12);
    transform: scale(1.003);
    /* very subtle hover */
}

.pricing .pricing-table tr:nth-child(even) {
    background-color: transparent;
}

.pricing .pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing .schedule-text {
    font-size: 13.8px;
    /* reduced */
    margin-bottom: 12px;
    /* reduced */
}

/* ==========================================================================
   Mobile Adjustments – Also Reduced 60%
   ========================================================================== */
@media (max-width: 768px) {
    .pricing {
        padding: 10px;
        /* reduced */
        margin: 12px auto;
        /* reduced */
    }

    .pricing .intro-text {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .pricing .pricing-section {
        margin-bottom: 10px;
    }

    .pricing .pricing-section h3 {
        font-size: 14.5px;
    }

    .pricing .pricing-table th,
    .pricing .pricing-table td {
        padding: 5px 8px;
        /* reduced */
        font-size: 12px;
    }

    .pricing .pricing-table tbody tr:hover {
        transform: none;
    }

    .pricing .schedule-text {
        font-size: 12.5px;
        margin-bottom: 10px;
    }
}