.pricing-item {
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s;
}

.pricing-item:hover {
    transform: translateY(-10px);
}

.pricing-item.active {
    transform: scale(1.05);
    z-index: 2;
}

.pricing-header {
    padding: 30px 0;
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px 10px 0 0;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 25px;
}

.pricing-item.active .pricing-title {
    color: white;
}

.pricing-body {
    padding: 40px 30px;
}

.price-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    font-weight: 500;
    color: #1e1e1e;
    position: relative;
    top: -20px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #1e1e1e;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list li {
    color: #666;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.list li.active:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.pricing-footer {
    padding: 30px;
    text-align: center;
}

.btn-primary-line {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #1b60c7;
    border: 2px solid #1b60c7;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary-line:hover {
    background: #1b60c7;
    color: white;
}

.btn.btn-default {
    background: linear-gradient(135deg, #1b60c7 0%, #20edd2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.btn.btn-default:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Center heading styles */
.center-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 20px;
}

.center-text {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

/* Modal styles */
.modal-content {
    border-radius: 10px;
}

.modal-header {
    background: #f8f9fa;
    border-radius: 10px 10px 0 0;
}

.modal-title {
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.custom-control {
    margin-bottom: 10px;
}
