.pricing {
    padding: 40px;
    max-width: 800px;
    margin: 10px auto;
}

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

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

.pricing .pricing-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a3c5e;
    margin-bottom: 15px;
    text-align: center;
}

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

.pricing .pricing-table th,
.pricing .pricing-table td {
    padding: 12px 15px;
    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: 16px;
}

.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 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.01);
}

.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: 18px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .pricing {
        padding: 20px;
        margin: 30px auto;
    }

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

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

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

    .pricing .pricing-table th,
    .pricing .pricing-table td {
        padding: 8px 10px;
        font-size: 14px;
    }

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

    .pricing .schedule-text {
        font-size: 16px;
        margin-bottom: 20px;
    }
}