.dcpt-wrapper {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.dcpt-column {
    background: #fff;
    border: 1px solid #dbe3f3;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dcpt-header {
    text-align: center;
    padding: 20px;
}

.dcpt-title {
    background: #1f66d1;
    color: #fff;
    padding: 12px;
}

.dcpt-price .amount {
    font-size: 36px;
    font-weight: bold;
}

.dcpt-body {
    padding: 20px;
    flex-grow: 1;
}

.dcpt-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dcpt-body li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.dcpt-body svg {
    width: 16px;
    height: 16px;
    fill: #1f66d1;
}

@media (max-width: 768px) {
    .dcpt-wrapper {
        flex-direction: column;
    }
}
