/* Banner Styles */
.page-banner {
    position: relative;
    background: #ffffff !important;
    padding: 150px 0 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-banner .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.page-banner .breadcrumb-item.active {
    color: white;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Card Styles */
.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 2px solid #ffc107;
}

/* Ribbon Styles */
.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 120px;
    height: 120px;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 160px;
    padding: 8px 0;
    background-color: #ffc107;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
    right: -40px;
    top: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Pricing Header Styles */
.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.price {
    margin-bottom: 30px;
    line-height: 1;
}

.price .currency {
    font-size: 1.5rem;
    position: relative;
    top: -15px;
    margin-right: 5px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.price .period {
    font-size: 1rem;
    color: #6c757d;
    margin-left: 5px;
}

/* Feature List Styles */
.pricing-features {
    margin: 20px 0;
}

.pricing-features ul {
    margin: 0;
    padding: 0;
}

.pricing-features ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-features strong {
    margin-right: 5px;
}

/* Button Styles */
.btn-lg {
    padding: 12px 24px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 4px;
    border: none;
    width: 100%;
}

.btn-warning {
    background-color: #ffb800;
    color: #000;
    transition: background-color 0.2s ease;
}

.btn-warning:hover {
    background-color: #ffa800;
    color: #000;
}

.btn-secondary {
    background-color: #e9ecef;
    color: #6c757d;
}

.btn-secondary:hover {
    background-color: #dee2e6;
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 30px;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .pricing-features ul li {
        font-size: 0.9rem;
    }
}