.price-table {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 18rem;
    height: auto;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
    margin: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}


.card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 1rem;
}

.card-header > h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #63534b;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
}

.card-subheader {
    text-align: center;
    margin-bottom: 2rem;
}

.card-subheader > h2 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

.card-detail {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.card-detail > p {
    padding: 0.8rem 0;
    font-size: 1rem;
    color: #555;
    border-bottom: 1px solid #e9ecef;
    margin: 0;
    display: flex;
    text-align: left;
    line-height: 1.5;
}

.card-detail > p::before {
    content: "✓";
    color: #63534b;
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.card-detail > p:last-child {
    border-bottom: none;
}

.card-price {
    text-align: center;
    padding: 1.5rem 0;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin-top: auto;
    width: 100%;
}

.card-price > .from {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-price > .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #63534b;
    margin: 0;
    line-height: 1;
}

.card-price > .price sup {
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 0.2rem;
}

.price-disclaimer {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto 0 auto;
    padding: 2rem;
    background: rgba(99, 83, 75, 0.05);
    border-radius: 15px;
}

.price-disclaimer > p { 
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

@media screen and (max-width: 768px) {
    .price-table {
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .card-wrapper {
        padding: 1.5rem 1rem;
        width: 18rem;
    }
    
    .card-header > h1 {
        font-size: 1.8rem;
    }
    
    .card-subheader > h2 {
        font-size: 1rem;
    }
    
    .card-detail > p {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }
    
    .card-price > .price {
        font-size: 2rem;
    }
    
    .price-disclaimer {
        margin: 2rem 1rem 0 1rem;
        padding: 1.5rem;
    }
}

@media screen and (max-width: 620px) {
    .card-wrapper {
        width: 18rem;
        padding: 1.2rem 0.8rem;
    }
    
    .card-header > h1 {
        font-size: 1.6rem;
    }
    
    .card-detail > p {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .card-price > .price {
        font-size: 1.8rem;
    }
}
