/* Lesson Prices Section Styles */
.tm-price-section {
    background-color: #17598A;
    padding: 60px 0;
}

.lesson-prices-heading {
    color: #17598A;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.price-cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    width: 350px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-header {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.price-title {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.price-amount {
    background-color: #17598A;
    color: white;
    font-size: 60px;
    font-weight: bold;
    padding: 30px 20px;
    text-align: center;
}

.price-details {
    background-color: #f8f9fa;
    padding: 20px;
}

.price-feature {
    border-bottom: 1px dotted #ccc;
    padding: 15px 0;
    color: #333;
    font-size: 16px;
    text-align: center;
}

.price-feature:last-child {
    border-bottom: none;
}

.price-action {
    padding: 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.price-button {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.price-button:hover {
    background-color: #333;
}

.value-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #17598A;
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 18px;
    transform: rotate(45deg) translate(15px, -15px);
    width: 150px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .price-cards-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .lesson-prices-heading {
        font-size: 36px;
    }
    
    .price-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 20px;
    }
}