.pricing-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 32px;
    color: #4a154b;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

.pricing-card {
    background-color: #f5f3ff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pro-plan {
    border: 3px solid #bfbfbf;
    transform: scale(1.08);
}
.pro-plan button {
    background-color: #e01e5a !important;
    color: white !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    transition: background-color 0.3s ease;
    border: 2px solid #e01e5a !important;
}
.pro-plan button:hover {
    background-color: transparent !important;
    color: #e01e5a !important;
}
.pricing-header {
    margin-bottom: 15px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: #4a154b;
    /* margin-bottom: 12px; */
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: #4a154b;
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
}

.price-period {
    font-size: 18px;
    font-weight: 400;
    color: #4a154b;
}

.pricing-features {
    margin-top: 20px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 16px;
}

.feature-icon {
    color: #34d399;
    margin-right: 10px;
    font-weight: bold;
}

.btn-primary {
    background-color: #4a154b;
    border: none;
    border-radius: 4px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    margin-top: 25px;
    width: 100%;
}

.btn-danger {
    background-color: #e01e5a;
    border: none;
    border-radius: 4px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    margin-top: 25px;
    width: 100%;
}

.btn-primary:hover {
    background-color: #3e1d3c;
}

.btn-danger:hover {
    background-color: #c01a4b;
}

.popular-badge {
    background-color: #e01e5a;
    color: white;
    padding: 4px 18px;
    border-radius: 12px;
    font-size: 18px;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-text {
    font-size: 26px;
    font-weight: 600;
    color: #4a154b;
}

@media screen and (max-width: 763px) {
    .pro-plan {
        transform: scale(1);
    }
}
