/* 價格表樣式 */
.custom-pricing-price {
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.price-unit {
    font-size: 1.25rem;
    margin-right: 0.25rem;
    vertical-align: top;
    line-height: 2.5;
}

.price-number {
    font-size: 2.5rem;
    line-height: 1;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.pricing-features ul li i {
    color: #0088cc;
    margin-right: 0.5rem;
}

.custom-box-shadow-1 {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.custom-box-shadow-1:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.pricing-action {
    margin-top: 2rem;
}

.pricing-action .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
}

/* 響應式設計 */
@media (max-width: 991px) {
    .price-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .col-md-4 {
        margin-bottom: 2rem;
    }
    
    .col-md-4:last-child {
        margin-bottom: 0;
    }
}