    .pricing-section {
        /* font-family: 'Nunito', sans-serif; */
        background-color: #ffffff;
        padding: 60px 15px;
    }

    .pricing-container {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        /* Căn giữa */
    }

    .pricing-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .tab-button {
        border: 1px solid black;
        background-color: white;
        color: #ff7e5f;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .tab-button:first-child {
        /* border-top-left-radius: 8px; */
        /* border-bottom-left-radius: 8px; */
    }

    .tab-button:last-child {
        /* border-top-right-radius: 8px; */
        /* border-bottom-right-radius: 8px; */
    }

    .tab-button.active,
    .tab-button:hover {
        background-color: #ff7e5f;
        color: white;
    }

    .pricing-cards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .pricing-card {
        background-color: white;
        border: 1px solid #e0e0e0;
        /* border-radius: 16px; */
        overflow: hidden;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .card-header {
        background-color: #fff4d8;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .card-header h3 {
        margin: 0;
        font-size: 24px;
        color: #333;
        font-weight: 800;
    }

    .card-header img {
        width: 50px;
        height: auto;
    }

    .card-body {
        padding: 30px;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        font-size: 18px;
        color: #555;
    }

    .feature-list img {
        width: 24px;
        height: 24px;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .card-footer {
        padding: 0 30px 30px 30px;
        margin-top: auto;
    }

    .price {
        font-size: 32px;
        font-weight: 800;
        color: black;
        margin-bottom: 20px;
    }

    .price span {
        font-size: 32px;
        font-weight: 800;
        color: black;
    }

    .price-blue {
        color: #007bff;
        text-decoration: underline;
        text-decoration-style: wavy;
        text-decoration-color: #007bff;
    }

    .select-button {
        background-color: #ff7e5f;
        color: white;
        border: none;
        border-radius: 8px;
        padding: 15px;
        width: 100%;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .select-button:hover {
        background-color: #e66a50;
    }

    @media (max-width: 768px) {
        .pricing-cards-grid {
            grid-template-columns: 1fr;
        }
    }