.ecp-pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 15px;
}

.ecp-pricing-column {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 380px;
}

.ecp-header {
    text-align: center;
    padding: 20px 15px;
}

.ecp-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.ecp-price {
    text-align: center;
    padding: 15px;
    font-weight: bold;
}

.ecp-image {
    overflow: hidden;
}

.ecp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ecp-description {
    padding: 20px;
    flex-grow: 1;
}

.ecp-description p {
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.5;
}

.ecp-description p:last-child {
    margin-bottom: 0;
}

.ecp-cta {
    padding: 0 20px 20px;
    text-align: center;
}

.ecp-button {
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
    transition: opacity 0.2s;
}

.ecp-button:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .ecp-pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .ecp-pricing-column {
        max-width: 100%;
    }
}