﻿/* ???? ???? ?? */
.pricing-header {
    background-color: #007bff;
    color: white;
    padding: 20px;
    border-radius: 0.25rem 0.25rem 0 0;
}

.pricing-card {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.price {
    font-size: 36px;
    margin: 20px 0;
    color: #333;
}

.price span {
    font-size: 18px;
    color: #888;
}

.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features li {
    margin: 10px 0;
}

    .features li::before {
        content: "✔️";
        margin-right: 10px;
        color: #007bff;
    }

.btn-custom {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-custom:hover {
    background-color: #0056b3;
}
/*????? ???? ???? ??*/
