.pricing-table .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.pricing-table .grid .box {
    position: relative;
    width: 250px;
    border: 1px solid #444;
    text-align: center;
    padding: 20px;
    background: #444;
    border-radius: 10px;
    box-shadow: 0px 2px 10px 5px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.pricing-table .grid .box.highlight {
    background: #d3d3d3b0;
    border: 1px solid #000;
}

.pricing-table .grid .box .edit-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.pricing-table .grid .box .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.pricing-table .grid .box .price {
    margin-bottom: 20px;
}

.pricing-table .grid .box .price b {
    display: block;
    font-size: 40px;
    margin-bottom: -5px;
    color: #fff;
}

.pricing-table .grid .box .features > * {
    color: #ddd;
    padding: 8px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-table .grid .box .button button {
    width: 100%;
    margin: 25px 0px 0px;
    padding: 10px;
    background: #fff;
    color: #333;
    border-radius: 5px;
    outline: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.pricing-table .grid .box.professional {
    transform: scale(1.1);
    background: linear-gradient(to bottom, #3a7bd5, #3a6073);
}

.pricing-table .grid .box.professional .title {
    color: #eee;
}

.pricing-table .grid .box.professional .price {
    color: #fff;
}

.pricing-table .grid .box.professional .features > * {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.pricing-table .grid .box.professional .button button {
    background: #fff;
    color: #3a6073;
}

@media (max-width: 804px) {
    .pricing-table .grid {
        gap: 20px;
    }

    .pricing-table .grid .box.professional {
        transform: scale(1);
    }
}
