/* Pricing Cards - Request Charter Page */
.slt-pricing-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 10px;
}

.slt-pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.slt-pricing-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
}

.slt-pricing-card__price {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 5px;
}

.slt-pricing-card__note {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.slt-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.slt-pricing-card__features li {
    font-size: 14px;
    color: #4b5563;
    padding: 6px 0;
    line-height: 1.6;
}

/* Responsive - 2 columns on tablet/desktop, 1 column on mobile */
@media (max-width: 767px) {
    .slt-pricing-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .slt-pricing-card__price {
        font-size: 40px;
    }
}
